mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
style - small whitespace nitpick
This commit is contained in:
parent
89e690fc79
commit
b41aad6d1a
@ -55,7 +55,7 @@ module.exports = class PendingTransactionTracker extends EventEmitter {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
queryPendingTxs ({oldBlock, newBlock}) {
|
queryPendingTxs ({ oldBlock, newBlock }) {
|
||||||
// check pending transactions on start
|
// check pending transactions on start
|
||||||
if (!oldBlock) {
|
if (!oldBlock) {
|
||||||
this._checkPendingTxs()
|
this._checkPendingTxs()
|
||||||
|
@ -84,14 +84,14 @@ describe('PendingTransactionTracker', function () {
|
|||||||
let newBlock, oldBlock
|
let newBlock, oldBlock
|
||||||
newBlock = { number: '0x01' }
|
newBlock = { number: '0x01' }
|
||||||
pendingTxTracker._checkPendingTxs = done
|
pendingTxTracker._checkPendingTxs = done
|
||||||
pendingTxTracker.queryPendingTxs({oldBlock, newBlock})
|
pendingTxTracker.queryPendingTxs({ oldBlock, newBlock })
|
||||||
})
|
})
|
||||||
it('should call #_checkPendingTxs if oldBlock and the newBlock have a diff of greater then 1', function (done) {
|
it('should call #_checkPendingTxs if oldBlock and the newBlock have a diff of greater then 1', function (done) {
|
||||||
let newBlock, oldBlock
|
let newBlock, oldBlock
|
||||||
oldBlock = { number: '0x01' }
|
oldBlock = { number: '0x01' }
|
||||||
newBlock = { number: '0x03' }
|
newBlock = { number: '0x03' }
|
||||||
pendingTxTracker._checkPendingTxs = done
|
pendingTxTracker._checkPendingTxs = done
|
||||||
pendingTxTracker.queryPendingTxs({oldBlock, newBlock})
|
pendingTxTracker.queryPendingTxs({ oldBlock, newBlock })
|
||||||
})
|
})
|
||||||
it('should not call #_checkPendingTxs if oldBlock and the newBlock have a diff of 1 or less', function (done) {
|
it('should not call #_checkPendingTxs if oldBlock and the newBlock have a diff of 1 or less', function (done) {
|
||||||
let newBlock, oldBlock
|
let newBlock, oldBlock
|
||||||
@ -101,7 +101,7 @@ describe('PendingTransactionTracker', function () {
|
|||||||
const err = new Error('should not call #_checkPendingTxs if oldBlock and the newBlock have a diff of 1 or less')
|
const err = new Error('should not call #_checkPendingTxs if oldBlock and the newBlock have a diff of 1 or less')
|
||||||
done(err)
|
done(err)
|
||||||
}
|
}
|
||||||
pendingTxTracker.queryPendingTxs({oldBlock, newBlock})
|
pendingTxTracker.queryPendingTxs({ oldBlock, newBlock })
|
||||||
done()
|
done()
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user