mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Fix bug where block gas limit was incorrectly parsed.
This commit is contained in:
parent
52976d6edc
commit
8d3fec42d0
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
## Current Master
|
## Current Master
|
||||||
|
|
||||||
|
- Fix block gas limit estimation.
|
||||||
|
|
||||||
## 3.10.4 2017-9-27
|
## 3.10.4 2017-9-27
|
||||||
|
|
||||||
- Fix bug that could mis-render token balances when very small. (Not actually included in 3.9.9)
|
- Fix bug that could mis-render token balances when very small. (Not actually included in 3.9.9)
|
||||||
|
@ -11,6 +11,7 @@ const async = require('async')
|
|||||||
const EthQuery = require('eth-query')
|
const EthQuery = require('eth-query')
|
||||||
const ObservableStore = require('obs-store')
|
const ObservableStore = require('obs-store')
|
||||||
const EventEmitter = require('events').EventEmitter
|
const EventEmitter = require('events').EventEmitter
|
||||||
|
const ethUtil = require('ethereumjs-util')
|
||||||
function noop () {}
|
function noop () {}
|
||||||
|
|
||||||
|
|
||||||
@ -59,8 +60,9 @@ class AccountTracker extends EventEmitter {
|
|||||||
_updateForBlock (block) {
|
_updateForBlock (block) {
|
||||||
const blockNumber = '0x' + block.number.toString('hex')
|
const blockNumber = '0x' + block.number.toString('hex')
|
||||||
this._currentBlockNumber = blockNumber
|
this._currentBlockNumber = blockNumber
|
||||||
|
const currentBlockGasLimit = ethUtil.addHexPrefix(block.gasLimit.toString())
|
||||||
|
|
||||||
this.store.updateState({ currentBlockGasLimit: `0x${block.gasLimit.toString('hex')}` })
|
this.store.updateState({ currentBlockGasLimit })
|
||||||
|
|
||||||
async.parallel([
|
async.parallel([
|
||||||
this._updateAccounts.bind(this),
|
this._updateAccounts.bind(this),
|
||||||
|
Loading…
Reference in New Issue
Block a user