aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorKevin Serrano <kevin.serrano@consensys.net>2017-10-26 02:32:38 +0800
committerKevin Serrano <kevin.serrano@consensys.net>2017-10-26 02:32:38 +0800
commitcb7d07ebae142de1712e36b082398f58fba1659a (patch)
tree6381bfeb194a806b34a0e869823b56feabe9f289 /ui
parentc0e0522c306c342b460ddbe49bc83a85f1b3f342 (diff)
downloadtangerine-wallet-browser-cb7d07ebae142de1712e36b082398f58fba1659a.tar.gz
tangerine-wallet-browser-cb7d07ebae142de1712e36b082398f58fba1659a.tar.zst
tangerine-wallet-browser-cb7d07ebae142de1712e36b082398f58fba1659a.zip
Fix mismatched decimal/hex conversion in pending-tx
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 79323d6eb..c4f215d19 100644
--- a/ui/app/components/pending-tx.js
+++ b/ui/app/components/pending-tx.js
@@ -57,7 +57,7 @@ PendingTx.prototype.render = function () {
const safeGasLimit = safeGasLimitBN.toString(10)
// Gas Price
- const gasPrice = txParams.gasPrice || MIN_GAS_PRICE_BN.toString(10)
+ const gasPrice = txParams.gasPrice || MIN_GAS_PRICE_BN.toString(16)
const gasPriceBn = hexToBn(gasPrice)
const txFeeBn = gasBn.mul(gasPriceBn)