aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/ducks
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/ducks')
-rw-r--r--ui/app/ducks/gas.duck.js4
-rw-r--r--ui/app/ducks/tests/gas-duck.test.js4
2 files changed, 4 insertions, 4 deletions
diff --git a/ui/app/ducks/gas.duck.js b/ui/app/ducks/gas.duck.js
index 8b2fbcfdb..7f18b2272 100644
--- a/ui/app/ducks/gas.duck.js
+++ b/ui/app/ducks/gas.duck.js
@@ -13,8 +13,8 @@ const SET_CUSTOM_GAS_TOTAL = 'metamask/gas/SET_CUSTOM_GAS_TOTAL'
// TODO: determine if this approach to initState is consistent with conventional ducks pattern
const initState = {
customData: {
- price: 0,
- limit: 21000,
+ price: null,
+ limit: '0x5208',
},
basicEstimates: {
average: null,
diff --git a/ui/app/ducks/tests/gas-duck.test.js b/ui/app/ducks/tests/gas-duck.test.js
index 7fd74f815..66cf376a7 100644
--- a/ui/app/ducks/tests/gas-duck.test.js
+++ b/ui/app/ducks/tests/gas-duck.test.js
@@ -47,8 +47,8 @@ describe('Gas Duck', () => {
}
const initState = {
customData: {
- price: 0,
- limit: 21000,
+ price: null,
+ limit: '0x5208',
},
basicEstimates: {
average: null,