Fix send token bug.

feature/default_network_editable
Dan 7 years ago committed by Chi Kei Chan
parent f89b766534
commit 0d39a3a8d4
  1. 3
      ui/app/actions.js

@ -1,5 +1,6 @@
const abi = require('human-standard-token-abi') const abi = require('human-standard-token-abi')
const getBuyEthUrl = require('../../app/scripts/lib/buy-eth-url') const getBuyEthUrl = require('../../app/scripts/lib/buy-eth-url')
const ethUtil = require('ethereumjs-util')
var actions = { var actions = {
_setBackgroundConnection: _setBackgroundConnection, _setBackgroundConnection: _setBackgroundConnection,
@ -641,7 +642,7 @@ function signTokenTx (tokenAddress, toAddress, amount, txData) {
return dispatch => { return dispatch => {
dispatch(actions.showLoadingIndication()) dispatch(actions.showLoadingIndication())
const token = global.eth.contract(abi).at(tokenAddress) const token = global.eth.contract(abi).at(tokenAddress)
token.transfer(toAddress, amount, txData) token.transfer(toAddress, ethUtil.addHexPrefix(amount), txData)
.catch(err => { .catch(err => {
dispatch(actions.hideLoadingIndication()) dispatch(actions.hideLoadingIndication())
dispatch(actions.displayWarning(err.message)) dispatch(actions.displayWarning(err.message))

Loading…
Cancel
Save