aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2017-07-20 02:54:56 +0800
committerGitHub <noreply@github.com>2017-07-20 02:54:56 +0800
commitd2fd7e81c455f46634e2ef68e2bf45b67dd20d8d (patch)
treef1eb6692083be2460e5a00fd9015ee062dc9c572
parent92a8af991258f8cad51fef44187bdb734a8e931d (diff)
parent51c5bebdf5ec4c4ac0e2878bd503e39a379d79c2 (diff)
downloadtangerine-wallet-browser-d2fd7e81c455f46634e2ef68e2bf45b67dd20d8d.tar.gz
tangerine-wallet-browser-d2fd7e81c455f46634e2ef68e2bf45b67dd20d8d.tar.zst
tangerine-wallet-browser-d2fd7e81c455f46634e2ef68e2bf45b67dd20d8d.zip
Merge pull request #1796 from MetaMask/1GweiMinGasPrice
Lowered minimum gas price to 1 gwei
-rw-r--r--CHANGELOG.md1
-rw-r--r--ui/app/components/pending-tx.js2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4d265d318..e68a7ab89 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,7 @@
- Added a link to our new support page to the help screen.
- Fixed bug where a new transaction would be shown over the current transaction, creating a possible timing attack against user confirmation.
- Fixed bug in nonce tracker where an incorrect nonce would be calculated.
+- Lowered minimum gas price to 1 Gwei.
## 3.9.0 2017-7-12
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)