aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/controllers
diff options
context:
space:
mode:
authorFrankie <frankie.diamond@gmail.com>2018-05-22 07:00:44 +0800
committerAlexander Tseung <alextsg@users.noreply.github.com>2018-05-22 07:00:44 +0800
commite8b2e11c5624d80f535c1344d9c9be48627b1319 (patch)
tree8d66e7892bc242b978590b80ea7f9bcde0d5f0a3 /app/scripts/controllers
parent45ad37162287a1db30caa8eeea89442d303ea883 (diff)
downloadtangerine-wallet-browser-e8b2e11c5624d80f535c1344d9c9be48627b1319.tar
tangerine-wallet-browser-e8b2e11c5624d80f535c1344d9c9be48627b1319.tar.gz
tangerine-wallet-browser-e8b2e11c5624d80f535c1344d9c9be48627b1319.tar.bz2
tangerine-wallet-browser-e8b2e11c5624d80f535c1344d9c9be48627b1319.tar.lz
tangerine-wallet-browser-e8b2e11c5624d80f535c1344d9c9be48627b1319.tar.xz
tangerine-wallet-browser-e8b2e11c5624d80f535c1344d9c9be48627b1319.tar.zst
tangerine-wallet-browser-e8b2e11c5624d80f535c1344d9c9be48627b1319.zip
Reveal get filtered tx list (#4332)
* add getFilteredTxList from txController to getApi * transactions - remove dead code (isNonceTaken)
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