diff options
author | Kevin Serrano <kevin.serrano@consensys.net> | 2017-09-14 04:24:16 +0800 |
---|---|---|
committer | Kevin Serrano <kevin.serrano@consensys.net> | 2017-09-14 04:24:16 +0800 |
commit | a22a2586abcca35d2a4bc1a0407aeaacc55f0a27 (patch) | |
tree | 3a34a11b3a99283c696564c1c69a59254b5d6fc0 /ui/app | |
parent | 3d36d565afe908ca7c4424ff8a7d3659d0978aca (diff) | |
download | tangerine-wallet-browser-a22a2586abcca35d2a4bc1a0407aeaacc55f0a27.tar tangerine-wallet-browser-a22a2586abcca35d2a4bc1a0407aeaacc55f0a27.tar.gz tangerine-wallet-browser-a22a2586abcca35d2a4bc1a0407aeaacc55f0a27.tar.bz2 tangerine-wallet-browser-a22a2586abcca35d2a4bc1a0407aeaacc55f0a27.tar.lz tangerine-wallet-browser-a22a2586abcca35d2a4bc1a0407aeaacc55f0a27.tar.xz tangerine-wallet-browser-a22a2586abcca35d2a4bc1a0407aeaacc55f0a27.tar.zst tangerine-wallet-browser-a22a2586abcca35d2a4bc1a0407aeaacc55f0a27.zip |
Haha silly me, only when gas is estimated and not explicit.
Diffstat (limited to 'ui/app')
-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 ec2b15de4..c3350fcc1 100644 --- a/ui/app/components/pending-tx.js +++ b/ui/app/components/pending-tx.js @@ -296,7 +296,7 @@ PendingTx.prototype.render = function () { }, 'Insufficient balance for transaction') : null, - (dangerousGasLimit && gasLimitSpecified) ? + (dangerousGasLimit && !gasLimitSpecified) ? h('span.error', { style: { fontSize: '0.9em', |