Merge pull request #1882 from MetaMask/tx-cont-fixes

Tx cont fixes
This commit is contained in:
Frankie 2017-08-09 00:16:49 -04:00 committed by GitHub
commit 57f6fce6b2
2 changed files with 12 additions and 4 deletions

View File

@ -40,7 +40,7 @@ module.exports = class TransactionController extends EventEmitter {
this.pendingTxTracker = new PendingTransactionTracker({
provider: this.provider,
nonceTracker: this.nonceTracker,
getBalance: async (address) => {
getBalance: (address) => {
const account = this.ethStore.getState().accounts[address]
if (!account) return
return account.balance
@ -382,9 +382,12 @@ module.exports = class TransactionController extends EventEmitter {
this._setTxStatus(txId, 'confirmed')
}
setTxStatusFailed (txId, reason) {
setTxStatusFailed (txId, err) {
const txMeta = this.getTx(txId)
txMeta.err = reason
txMeta.err = {
message: err.toString(),
stack: err.stack,
}
this.updateTx(txMeta)
this._setTxStatus(txId, 'failed')
}

View File

@ -1,5 +1,6 @@
const ethUtil = require('ethereumjs-util')
const BN = ethUtil.BN
const assert = require('assert')
const BN = require('bn.js')
module.exports = {
getStack,
@ -15,6 +16,10 @@ function getStack () {
}
function sufficientBalance (txParams, hexBalance) {
// validate hexBalance is a hex string
assert.equal(typeof hexBalance, 'string', 'sufficientBalance - hexBalance is not a hex string')
assert.equal(hexBalance.slice(0, 2), '0x', 'sufficientBalance - hexBalance is not a hex string')
const balance = hexToBn(hexBalance)
const value = hexToBn(txParams.value)
const gasLimit = hexToBn(txParams.gas)