aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/send-v2.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/send-v2.js')
-rw-r--r--ui/app/send-v2.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/ui/app/send-v2.js b/ui/app/send-v2.js
index 697dfc517..fc1df1f51 100644
--- a/ui/app/send-v2.js
+++ b/ui/app/send-v2.js
@@ -548,7 +548,6 @@ SendTransactionScreen.prototype.getEditedTx = function () {
selectedToken,
editingTransactionId,
unapprovedTxs,
- nonce,
} = this.props
const editingTx = {
@@ -560,10 +559,6 @@ SendTransactionScreen.prototype.getEditedTx = function () {
},
}
- if (nonce) {
- editingTx.txParams.nonce = ethUtil.addHexPrefix(nonce)
- }
-
if (selectedToken) {
const data = TOKEN_TRANSFER_FUNCTION_SIGNATURE + Array.prototype.map.call(
ethAbi.rawEncode(['address', 'uint256'], [to, ethUtil.addHexPrefix(amount)]),