aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2017-07-20 02:44:00 +0800
committerDan Finlay <dan@danfinlay.com>2017-07-20 02:44:00 +0800
commit51c5bebdf5ec4c4ac0e2878bd503e39a379d79c2 (patch)
treef1eb6692083be2460e5a00fd9015ee062dc9c572 /ui
parent92a8af991258f8cad51fef44187bdb734a8e931d (diff)
downloadtangerine-wallet-browser-51c5bebdf5ec4c4ac0e2878bd503e39a379d79c2.tar
tangerine-wallet-browser-51c5bebdf5ec4c4ac0e2878bd503e39a379d79c2.tar.gz
tangerine-wallet-browser-51c5bebdf5ec4c4ac0e2878bd503e39a379d79c2.tar.bz2
tangerine-wallet-browser-51c5bebdf5ec4c4ac0e2878bd503e39a379d79c2.tar.lz
tangerine-wallet-browser-51c5bebdf5ec4c4ac0e2878bd503e39a379d79c2.tar.xz
tangerine-wallet-browser-51c5bebdf5ec4c4ac0e2878bd503e39a379d79c2.tar.zst
tangerine-wallet-browser-51c5bebdf5ec4c4ac0e2878bd503e39a379d79c2.zip
Lowered minimum gas price to 1 gwei
Diffstat (limited to 'ui')
-rw-r--r--ui/app/components/pending-tx.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js
index d7d602f31..5324ccd64 100644
--- a/ui/app/components/pending-tx.js
+++ b/ui/app/components/pending-tx.js
@@ -15,7 +15,7 @@ const addressSummary = util.addressSummary
const nameForAddress = require('../../lib/contract-namer')
const BNInput = require('./bn-as-decimal-input')
-const MIN_GAS_PRICE_GWEI_BN = new BN(2)
+const MIN_GAS_PRICE_GWEI_BN = new BN(1)
const GWEI_FACTOR = new BN(1e9)
const MIN_GAS_PRICE_BN = MIN_GAS_PRICE_GWEI_BN.mul(GWEI_FACTOR)
const MIN_GAS_LIMIT_BN = new BN(21000)