diff options
author | Dan Finlay <542863+danfinlay@users.noreply.github.com> | 2018-01-09 03:21:08 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-09 03:21:08 +0800 |
commit | f6f3f915707a2a4f5c9db43ae51741c7d30cbc69 (patch) | |
tree | d5f98ebc53b4b02f40f1bed110b2bb8e02ad48e4 /app/scripts/controllers/transactions.js | |
parent | 313b3c087a09bcc4462da15ff3caeac515967cf5 (diff) | |
parent | aec24ec81e4785ceea93375d562458f62be69266 (diff) | |
download | tangerine-wallet-browser-f6f3f915707a2a4f5c9db43ae51741c7d30cbc69.tar tangerine-wallet-browser-f6f3f915707a2a4f5c9db43ae51741c7d30cbc69.tar.gz tangerine-wallet-browser-f6f3f915707a2a4f5c9db43ae51741c7d30cbc69.tar.bz2 tangerine-wallet-browser-f6f3f915707a2a4f5c9db43ae51741c7d30cbc69.tar.lz tangerine-wallet-browser-f6f3f915707a2a4f5c9db43ae51741c7d30cbc69.tar.xz tangerine-wallet-browser-f6f3f915707a2a4f5c9db43ae51741c7d30cbc69.tar.zst tangerine-wallet-browser-f6f3f915707a2a4f5c9db43ae51741c7d30cbc69.zip |
Merge pull request #2879 from MetaMask/ImproveGasEstimation
Improve gas estimation
Diffstat (limited to 'app/scripts/controllers/transactions.js')
-rw-r--r-- | app/scripts/controllers/transactions.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/scripts/controllers/transactions.js b/app/scripts/controllers/transactions.js index 7c7efb84d..469deb670 100644 --- a/app/scripts/controllers/transactions.js +++ b/app/scripts/controllers/transactions.js @@ -32,6 +32,7 @@ module.exports = class TransactionController extends EventEmitter { this.provider = opts.provider this.blockTracker = opts.blockTracker this.signEthTx = opts.signTransaction + this.getGasPrice = opts.getGasPrice this.memStore = new ObservableStore({}) this.query = new EthQuery(this.provider) @@ -179,7 +180,8 @@ module.exports = class TransactionController extends EventEmitter { // ensure value txMeta.gasPriceSpecified = Boolean(txParams.gasPrice) txMeta.nonceSpecified = Boolean(txParams.nonce) - const gasPrice = txParams.gasPrice || await this.query.gasPrice() + const gasPrice = txParams.gasPrice || this.getGasPrice ? this.getGasPrice() + : await this.query.gasPrice() txParams.gasPrice = ethUtil.addHexPrefix(gasPrice.toString(16)) txParams.value = txParams.value || '0x0' // set gasLimit |