diff options
author | Kevin Serrano <kevgagser@gmail.com> | 2017-02-25 07:06:55 +0800 |
---|---|---|
committer | Kevin Serrano <kevgagser@gmail.com> | 2017-02-25 07:06:55 +0800 |
commit | dfc89d6c6dd622e7dff79544c0885594000ffd37 (patch) | |
tree | 3a1fc491156c1744e1c27a70ea1df2e17c4b6aae /ui | |
parent | 30e4bdf24b30c9a59a86d7b7890af66ffd0e83c5 (diff) | |
download | tangerine-wallet-browser-dfc89d6c6dd622e7dff79544c0885594000ffd37.tar tangerine-wallet-browser-dfc89d6c6dd622e7dff79544c0885594000ffd37.tar.gz tangerine-wallet-browser-dfc89d6c6dd622e7dff79544c0885594000ffd37.tar.bz2 tangerine-wallet-browser-dfc89d6c6dd622e7dff79544c0885594000ffd37.tar.lz tangerine-wallet-browser-dfc89d6c6dd622e7dff79544c0885594000ffd37.tar.xz tangerine-wallet-browser-dfc89d6c6dd622e7dff79544c0885594000ffd37.tar.zst tangerine-wallet-browser-dfc89d6c6dd622e7dff79544c0885594000ffd37.zip |
Make gasPrice accessible to the UI.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/components/pending-tx.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js index 761c75be3..f1f479794 100644 --- a/ui/app/components/pending-tx.js +++ b/ui/app/components/pending-tx.js @@ -18,7 +18,7 @@ PendingTx.prototype.render = function () { const txParams = txData.txParams const gas = state.gas || txParams.gas - const gasPrice = state.gasPrice || txParams.gasPrice + const gasPrice = state.gasPrice || txData.gasPrice return ( @@ -96,4 +96,3 @@ PendingTx.prototype.render = function () { ]) ) } - |