aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/scripts/lib/nonce-tracker.js22
-rw-r--r--package.json1
-rw-r--r--test/unit/nonce-tracker-test.js46
3 files changed, 63 insertions, 6 deletions
diff --git a/app/scripts/lib/nonce-tracker.js b/app/scripts/lib/nonce-tracker.js
index 6e9d094bc..ff2317a91 100644
--- a/app/scripts/lib/nonce-tracker.js
+++ b/app/scripts/lib/nonce-tracker.js
@@ -1,4 +1,4 @@
-const EthQuery = require('ethjs-query')
+const EthQuery = require('eth-query')
class NonceTracker {
@@ -20,10 +20,10 @@ class NonceTracker {
const currentBlock = await this._getCurrentBlock()
const blockNumber = currentBlock.number
const pendingTransactions = this.getPendingTransactions(address)
- const baseCount = await this.ethQuery.getTransactionCount(address, blockNumber)
- const nextNonce = baseCount + pendingTransactions
+ const baseCount = await this._getTxCount(address, blockNumber)
+ const nextNonce = parseInt(baseCount) + pendingTransactions.length + 1
// return next nonce and release cb
- return { nextNonce, releaseLock }
+ return { nextNonce: nextNonce.toString(16), releaseLock }
}
async _getCurrentBlock() {
@@ -37,13 +37,23 @@ class NonceTracker {
_takeLock(lockId) {
let releaseLock = null
// create and store lock
- const lock = new Promise((reject, resolve) => { releaseLock = resolve })
+ const lock = new Promise((resolve, reject) => { releaseLock = resolve })
this.lockMap[lockId] = lock
// setup lock teardown
- lock.then(() => delete this.lockMap[lockId])
+ lock.then(() => {
+ delete this.lockMap[lockId]
+ })
return releaseLock
}
+ _getTxCount (address, blockNumber) {
+ return new Promise((resolve, reject) => {
+ this.ethQuery.getTransactionCount(address, blockNumber, (err, result) => {
+ err ? reject(err) : resolve(result)
+ })
+ })
+ }
+
}
module.exports = NonceTracker
diff --git a/package.json b/package.json
index 9ed2e7ae0..9085e4565 100644
--- a/package.json
+++ b/package.json
@@ -10,6 +10,7 @@
"dist": "npm install && gulp dist --disableLiveReload",
"test": "npm run lint && npm run test-unit && npm run test-integration",
"test-unit": "METAMASK_ENV=test mocha --require test/helper.js --recursive \"test/unit/**/*.js\"",
+ "single-test": "METAMASK_ENV=test mocha --require test/helper.js",
"test-integration": "npm run buildMock && npm run buildCiUnits && testem ci -P 2",
"lint": "gulp lint",
"buildCiUnits": "node test/integration/index.js",
diff --git a/test/unit/nonce-tracker-test.js b/test/unit/nonce-tracker-test.js
new file mode 100644
index 000000000..5a05d6170
--- /dev/null
+++ b/test/unit/nonce-tracker-test.js
@@ -0,0 +1,46 @@
+const assert = require('assert')
+const NonceTracker = require('../../app/scripts/lib/nonce-tracker')
+
+describe('Nonce Tracker', function () {
+ let nonceTracker, provider, getPendingTransactions, pendingTxs
+ const noop = () => {}
+
+
+ beforeEach(function () {
+ pendingTxs =[{
+ 'status': 'submitted',
+ 'txParams': {
+ 'from': '0x7d3517b0d011698406d6e0aed8453f0be2697926',
+ 'gas': '0x30d40',
+ 'value': '0x0',
+ 'nonce': '0x1',
+ },
+ }]
+
+
+ getPendingTransactions = () => pendingTxs
+ provider = { sendAsync: (_, cb) => { cb(undefined , {result: '0x0'}) }, }
+ nonceTracker = new NonceTracker({
+ blockTracker: {
+ getCurrentBlock: () => '0x11b568',
+ once: (...args) => {
+ setTimeout(() => {
+ args.pop()()
+ }, 5000)
+ }
+ },
+ provider,
+ getPendingTransactions,
+ })
+ })
+
+ describe('#getNonceLock', function () {
+ it('should work', async function (done) {
+ this.timeout(15000)
+ const nonceLock = await nonceTracker.getNonceLock('0x7d3517b0d011698406d6e0aed8453f0be2697926')
+ assert.equal(nonceLock.nextNonce, '2', 'nonce should be 2')
+ nonceLock.releaseLock()
+ done()
+ })
+ })
+})