aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-03-14 10:19:10 +0800
committerDan <danjm.com@gmail.com>2018-03-14 10:19:10 +0800
commitc37684d7bde00adcb4b2e43db16be91978e2ef12 (patch)
treec143882ab12c899c4f1e447834788cbd884afcfb /ui/app/components
parente94a14ef8aee8a80a4d21ed8cb1d5b680296eb0b (diff)
downloadtangerine-wallet-browser-c37684d7bde00adcb4b2e43db16be91978e2ef12.tar.gz
tangerine-wallet-browser-c37684d7bde00adcb4b2e43db16be91978e2ef12.tar.zst
tangerine-wallet-browser-c37684d7bde00adcb4b2e43db16be91978e2ef12.zip
Remove unnecessary addition of nonce to state.
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/pending-tx/confirm-send-ether.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/ui/app/components/pending-tx/confirm-send-ether.js b/ui/app/components/pending-tx/confirm-send-ether.js
index 8fe58482b..f3f7e86c5 100644
--- a/ui/app/components/pending-tx/confirm-send-ether.js
+++ b/ui/app/components/pending-tx/confirm-send-ether.js
@@ -76,8 +76,6 @@ function mapDispatchToProps (dispatch) {
fromDenomination: 'WEI',
toDenomination: 'GWEI',
}))
-
- nonce = txParams.nonce
}
dispatch(actions.updateSend({
@@ -86,7 +84,6 @@ function mapDispatchToProps (dispatch) {
editingTransactionId: id,
gasTotal: sendGasTotal,
forceGasMin,
- nonce,
}))
dispatch(actions.showModal({ name: 'CUSTOMIZE_GAS' }))
},