mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
remove unused code
This commit is contained in:
parent
fb2c6cc8ac
commit
0a93b65a3d
@ -34,9 +34,6 @@ class NonceTracker {
|
||||
nonceDetails.network = networkNonceResult.details
|
||||
const nextNonce = Math.max(networkNonceResult.nonce, localNonceResult.nonce)
|
||||
assert(Number.isInteger(nextNonce), `nonce-tracker - nextNonce is not an integer - got: (${typeof nextNonce}) "${nextNonce}"`)
|
||||
// collect the numbers used to calculate the nonce for debugging
|
||||
const currentPendingNonce = this._getLocalPendingNonce(address)
|
||||
nonceDetails.currentPendingNonce = currentPendingNonce
|
||||
// return nonce and release cb
|
||||
return { nextNonce, nonceDetails, releaseLock }
|
||||
}
|
||||
@ -100,18 +97,6 @@ class NonceTracker {
|
||||
return { name: 'local', nonce: nextNonce, details: nonceDetails }
|
||||
}
|
||||
|
||||
_getLocalPendingNonce (address) {
|
||||
const transactions = this.getPendingTransactions(address)
|
||||
const highestNonce = this._getHighestNonce(transactions)
|
||||
return highestNonce
|
||||
}
|
||||
|
||||
_getLocalConfirmedNonce (address) {
|
||||
const transactions = this.getConfirmedTransactions(address)
|
||||
const highestNonce = this._getHighestNonce(transactions)
|
||||
return highestNonce
|
||||
}
|
||||
|
||||
_getLocalHighestNonce (address) {
|
||||
const confirmedTransactions = this.getConfirmedTransactions(address)
|
||||
const pendingTransactions = this.getPendingTransactions(address)
|
||||
|
Loading…
Reference in New Issue
Block a user