|
|
|
@ -4,8 +4,8 @@ const Mutex = require('await-semaphore').Mutex |
|
|
|
|
|
|
|
|
|
class NonceTracker { |
|
|
|
|
|
|
|
|
|
constructor ({ blockTracker, provider, getPendingTransactions }) { |
|
|
|
|
this.blockTracker = blockTracker |
|
|
|
|
constructor ({ provider, getPendingTransactions }) { |
|
|
|
|
this.provider = provider |
|
|
|
|
this.ethQuery = new EthQuery(provider) |
|
|
|
|
this.getPendingTransactions = getPendingTransactions |
|
|
|
|
this.lockMap = {} |
|
|
|
@ -39,16 +39,17 @@ class NonceTracker { |
|
|
|
|
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 blockNumber = currentBlock.number |
|
|
|
|
const nonceDetails = { blockNumber, baseCount, pendingCount } |
|
|
|
|
const nonceDetails = { blockNumber, baseCount, baseCountHex, pendingCount } |
|
|
|
|
// return nonce and release cb
|
|
|
|
|
return { nextNonce, nonceDetails, releaseLock } |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
async _getCurrentBlock () { |
|
|
|
|
const currentBlock = this.blockTracker.getCurrentBlock() |
|
|
|
|
const blockTracker = this._getBlockTracker() |
|
|
|
|
const currentBlock = blockTracker.getCurrentBlock() |
|
|
|
|
if (currentBlock) return currentBlock |
|
|
|
|
return await Promise((reject, resolve) => { |
|
|
|
|
this.blockTracker.once('latest', resolve) |
|
|
|
|
blockTracker.once('latest', resolve) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -82,6 +83,12 @@ class NonceTracker { |
|
|
|
|
return mutex |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// this is a hotfix for the fact that the blockTracker will
|
|
|
|
|
// change when the network changes
|
|
|
|
|
_getBlockTracker () { |
|
|
|
|
return this.provider._blockTracker |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
module.exports = NonceTracker |
|
|
|
|