mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
Ensure account-tracker currentBlockNumber is set on first block update.
This commit is contained in:
parent
1552fe1c3e
commit
eb32ccb0c7
@ -45,6 +45,9 @@ class AccountTracker {
|
|||||||
this._blockTracker = opts.blockTracker
|
this._blockTracker = opts.blockTracker
|
||||||
// blockTracker.currentBlock may be null
|
// blockTracker.currentBlock may be null
|
||||||
this._currentBlockNumber = this._blockTracker.getCurrentBlock()
|
this._currentBlockNumber = this._blockTracker.getCurrentBlock()
|
||||||
|
this._blockTracker.once('latest', blockNumber => {
|
||||||
|
this._currentBlockNumber = blockNumber
|
||||||
|
})
|
||||||
// bind function for easier listener syntax
|
// bind function for easier listener syntax
|
||||||
this._updateForBlock = this._updateForBlock.bind(this)
|
this._updateForBlock = this._updateForBlock.bind(this)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user