remove unused code

This commit is contained in:
kumavis 2017-08-22 15:06:54 -07:00
parent fb2c6cc8ac
commit 0a93b65a3d
1 changed files with 0 additions and 15 deletions

View File

@ -34,9 +34,6 @@ class NonceTracker {
nonceDetails.network = networkNonceResult.details nonceDetails.network = networkNonceResult.details
const nextNonce = Math.max(networkNonceResult.nonce, localNonceResult.nonce) const nextNonce = Math.max(networkNonceResult.nonce, localNonceResult.nonce)
assert(Number.isInteger(nextNonce), `nonce-tracker - nextNonce is not an integer - got: (${typeof nextNonce}) "${nextNonce}"`) 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 nonce and release cb
return { nextNonce, nonceDetails, releaseLock } return { nextNonce, nonceDetails, releaseLock }
} }
@ -100,18 +97,6 @@ class NonceTracker {
return { name: 'local', nonce: nextNonce, details: nonceDetails } 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) { _getLocalHighestNonce (address) {
const confirmedTransactions = this.getConfirmedTransactions(address) const confirmedTransactions = this.getConfirmedTransactions(address)
const pendingTransactions = this.getPendingTransactions(address) const pendingTransactions = this.getPendingTransactions(address)