diff options
author | Kevin Serrano <kevin.serrano@consensys.net> | 2017-10-26 02:32:38 +0800 |
---|---|---|
committer | Kevin Serrano <kevin.serrano@consensys.net> | 2017-10-26 02:32:38 +0800 |
commit | cb7d07ebae142de1712e36b082398f58fba1659a (patch) | |
tree | 6381bfeb194a806b34a0e869823b56feabe9f289 /ui | |
parent | c0e0522c306c342b460ddbe49bc83a85f1b3f342 (diff) | |
download | tangerine-wallet-browser-cb7d07ebae142de1712e36b082398f58fba1659a.tar tangerine-wallet-browser-cb7d07ebae142de1712e36b082398f58fba1659a.tar.gz tangerine-wallet-browser-cb7d07ebae142de1712e36b082398f58fba1659a.tar.bz2 tangerine-wallet-browser-cb7d07ebae142de1712e36b082398f58fba1659a.tar.lz tangerine-wallet-browser-cb7d07ebae142de1712e36b082398f58fba1659a.tar.xz 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.js | 2 |
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) |