diff options
-rw-r--r-- | app/scripts/transaction-manager.js | 1 | ||||
-rw-r--r-- | ui/app/components/pending-tx.js | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/scripts/transaction-manager.js b/app/scripts/transaction-manager.js index 6299091f2..eaeee2d72 100644 --- a/app/scripts/transaction-manager.js +++ b/app/scripts/transaction-manager.js @@ -157,6 +157,7 @@ module.exports = class TransactionManager extends EventEmitter { txMeta.txFee = txFee txMeta.txValue = txValue txMeta.maxCost = maxCost + txMeta.gasPrice = gasPrice this.updateTx(txMeta) } 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 () { ]) ) } - |