Remove unnecessary anonymous function call in actions.js gas estimation.

This commit is contained in:
Dan 2018-06-28 21:40:06 -02:30
parent de01a6f112
commit 7babacf062
1 changed files with 6 additions and 7 deletions

View File

@ -6,7 +6,6 @@ const {
calcGasTotal, calcGasTotal,
calcTokenBalance, calcTokenBalance,
estimateGas, estimateGas,
estimateGasPriceFromRecentBlocks,
} = require('./components/send_/send.utils') } = require('./components/send_/send.utils')
const ethUtil = require('ethereumjs-util') const ethUtil = require('ethereumjs-util')
const { fetchLocale } = require('../i18n-helper') const { fetchLocale } = require('../i18n-helper')
@ -747,12 +746,12 @@ function updateGasData ({
return (dispatch) => { return (dispatch) => {
dispatch(actions.gasLoadingStarted()) dispatch(actions.gasLoadingStarted())
let gasPrice let gasPrice
return (() => new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
background.getGasPrice((err, data) => { background.getGasPrice((err, data) => {
if(err !== null) return reject(err); if (err !== null) return reject(err)
return resolve(data); return resolve(data)
}) })
}))() })
.then(estimateGasPrice => { .then(estimateGasPrice => {
gasPrice = estimateGasPrice gasPrice = estimateGasPrice
return estimateGas({ return estimateGas({