aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/controllers
diff options
context:
space:
mode:
authortmashuang <thomas.b.huang@gmail.com>2018-05-22 07:36:48 +0800
committertmashuang <thomas.b.huang@gmail.com>2018-05-22 07:36:48 +0800
commit238f2eb179895bbb9e2a2ec26863041564c90a9d (patch)
treeada33021efc445a4a995f1cb701cbbac9b683f94 /app/scripts/controllers
parent848f8f805b54104d57aaf15f0cc14c36aa37edd2 (diff)
parente8b2e11c5624d80f535c1344d9c9be48627b1319 (diff)
downloadtangerine-wallet-browser-238f2eb179895bbb9e2a2ec26863041564c90a9d.tar.gz
tangerine-wallet-browser-238f2eb179895bbb9e2a2ec26863041564c90a9d.tar.zst
tangerine-wallet-browser-238f2eb179895bbb9e2a2ec26863041564c90a9d.zip
Merge branch 'develop' into testing
Diffstat (limited to 'app/scripts/controllers')
-rw-r--r--app/scripts/controllers/transactions/index.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/app/scripts/controllers/transactions/index.js b/app/scripts/controllers/transactions/index.js
index 3886db104..541f1db73 100644
--- a/app/scripts/controllers/transactions/index.js
+++ b/app/scripts/controllers/transactions/index.js
@@ -112,21 +112,6 @@ class TransactionController extends EventEmitter {
}
/**
- Check if a txMeta in the list with the same nonce has been confirmed in a block
- if the txParams dont have a nonce will return false
- @returns {boolean} whether the nonce has been used in a transaction confirmed in a block
- @param {object} txMeta - the txMeta object
- */
- async isNonceTaken (txMeta) {
- const { from, nonce } = txMeta.txParams
- if ('nonce' in txMeta.txParams) {
- const sameNonceTxList = this.txStateManager.getFilteredTxList({from, nonce, status: 'confirmed'})
- return (sameNonceTxList.length >= 1)
- }
- return false
- }
-
- /**
add a new unapproved transaction to the pipeline
@returns {Promise<string>} the hash of the transaction after being submitted to the network