Restore blockGasLimit to account-tracker

feature/default_network_editable
Dan Finlay 7 years ago
parent b1daa5ae26
commit 3bedcd3582
  1. 3
      app/scripts/lib/account-tracker.js

@ -18,6 +18,7 @@ class EthereumStore extends ObservableStore {
constructor (opts = {}) {
super({
accounts: {},
currentBlockGasLimit: '',
})
this._provider = opts.provider
this._query = new EthQuery(this._provider)
@ -54,6 +55,8 @@ class EthereumStore extends ObservableStore {
const blockNumber = '0x' + block.number.toString('hex')
this._currentBlockNumber = blockNumber
this.updateState({ currentBlockGasLimit: `0x${block.gasLimit.toString('hex')}` })
async.parallel([
this._updateAccounts.bind(this),
], (err) => {

Loading…
Cancel
Save