Ensure txParams are prefixed with 0x when sending.

This commit is contained in:
Dan 2018-04-02 16:38:51 -02:30
parent a180fb0320
commit d166cb2b1b
1 changed files with 4 additions and 0 deletions

View File

@ -635,6 +635,10 @@ SendTransactionScreen.prototype.onSubmit = function (event) {
txParams.to = to
}
Object.keys(txParams).forEach(key => {
txParams[key] = ethUtil.addHexPrefix(txParams[key])
})
selectedToken
? signTokenTx(selectedToken.address, to, amount, txParams)
: signTx(txParams)