aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorDan Finlay <flyswatter@users.noreply.github.com>2017-06-13 01:32:54 +0800
committerGitHub <noreply@github.com>2017-06-13 01:32:54 +0800
commitba254d9041aa2cd656ff313547e890fa40917425 (patch)
tree9f26e01eb4262473ff19933a2b49152f74c47447 /app
parentf788ba7244d78a60233b9516423524ebd931fbb6 (diff)
parent2e6e6e41250011b451412608e455fe6402634729 (diff)
downloadtangerine-wallet-browser-ba254d9041aa2cd656ff313547e890fa40917425.tar
tangerine-wallet-browser-ba254d9041aa2cd656ff313547e890fa40917425.tar.gz
tangerine-wallet-browser-ba254d9041aa2cd656ff313547e890fa40917425.tar.bz2
tangerine-wallet-browser-ba254d9041aa2cd656ff313547e890fa40917425.tar.lz
tangerine-wallet-browser-ba254d9041aa2cd656ff313547e890fa40917425.tar.xz
tangerine-wallet-browser-ba254d9041aa2cd656ff313547e890fa40917425.tar.zst
tangerine-wallet-browser-ba254d9041aa2cd656ff313547e890fa40917425.zip
Merge branch 'master' into currency-fix
Diffstat (limited to 'app')
-rw-r--r--app/manifest.json2
-rw-r--r--app/scripts/lib/eth-store.js2
-rw-r--r--app/scripts/lib/tx-utils.js9
3 files changed, 3 insertions, 10 deletions
diff --git a/app/manifest.json b/app/manifest.json
index 06f9b48a0..a610d9e75 100644
--- a/app/manifest.json
+++ b/app/manifest.json
@@ -1,7 +1,7 @@
{
"name": "MetaMask",
"short_name": "Metamask",
- "version": "3.7.6",
+ "version": "3.7.7",
"manifest_version": 2,
"author": "https://metamask.io",
"description": "Ethereum Browser Extension",
diff --git a/app/scripts/lib/eth-store.js b/app/scripts/lib/eth-store.js
index 6f04a9dd6..ebba98f5c 100644
--- a/app/scripts/lib/eth-store.js
+++ b/app/scripts/lib/eth-store.js
@@ -21,6 +21,7 @@ class EthereumStore extends ObservableStore {
transactions: {},
currentBlockNumber: '0',
currentBlockHash: '',
+ currentBlockGasLimit: '',
})
this._provider = opts.provider
this._query = new EthQuery(this._provider)
@@ -73,6 +74,7 @@ class EthereumStore extends ObservableStore {
this._currentBlockNumber = blockNumber
this.updateState({ currentBlockNumber: parseInt(blockNumber) })
this.updateState({ currentBlockHash: `0x${block.hash.toString('hex')}`})
+ this.updateState({ currentBlockGasLimit: `0x${block.gasLimit.toString('hex')}` })
async.parallel([
this._updateAccounts.bind(this),
this._updateTransactions.bind(this, blockNumber),
diff --git a/app/scripts/lib/tx-utils.js b/app/scripts/lib/tx-utils.js
index 658f3bedc..149d93102 100644
--- a/app/scripts/lib/tx-utils.js
+++ b/app/scripts/lib/tx-utils.js
@@ -21,21 +21,12 @@ module.exports = class txProviderUtils {
this.query.getBlockByNumber('latest', true, (err, block) => {
if (err) return cb(err)
async.waterfall([
- self.setBlockGasLimit.bind(self, txMeta, block.gasLimit),
self.estimateTxGas.bind(self, txMeta, block.gasLimit),
self.setTxGas.bind(self, txMeta, block.gasLimit),
], cb)
})
}
- setBlockGasLimit (txMeta, blockGasLimitHex, cb) {
- const blockGasLimitBN = hexToBn(blockGasLimitHex)
- const saferGasLimitBN = BnMultiplyByFraction(blockGasLimitBN, 19, 20)
- txMeta.blockGasLimit = bnToHex(saferGasLimitBN)
- cb()
- return
- }
-
estimateTxGas (txMeta, blockGasLimitHex, cb) {
const txParams = txMeta.txParams
// check if gasLimit is already specified