Skip to content

Commit

Permalink
add a bit of gasLimit so it won't fail
Browse files Browse the repository at this point in the history
  • Loading branch information
rstormsf committed Apr 2, 2018
1 parent 4f9902c commit 7f371b1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/stores/txStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,12 @@ class TxStore {
value: currentFee,
to: proxyMultiSenderAddress
})
console.log('gas', gas)
let tx = multisender.methods.multisendToken(token_address, addresses_to_send, balances_to_send)
.send({
from: this.web3Store.defaultAccount,
gasPrice: this.gasPriceStore.standardInHex,
gas: Web3Utils.toHex(gas),
gas: Web3Utils.toHex(gas + 150000),
value: currentFee
})

Expand Down

0 comments on commit 7f371b1

Please sign in to comment.