1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Prefixes to addresses with 0x before sending.

This commit is contained in:
Dan 2018-03-27 03:40:34 -02:30
parent dac66b8ee9
commit 252d692282

View File

@ -597,7 +597,7 @@ SendTransactionScreen.prototype.onSubmit = function (event) {
event.preventDefault() event.preventDefault()
const { const {
from: {address: from}, from: {address: from},
to, to: _to,
amount, amount,
gasLimit: gas, gasLimit: gas,
gasPrice, gasPrice,
@ -616,6 +616,8 @@ SendTransactionScreen.prototype.onSubmit = function (event) {
return return
} }
const to = ethUtil.addHexPrefix(_to)
this.addToAddressBookIfNew(to, toNickname) this.addToAddressBookIfNew(to, toNickname)
if (editingTransactionId) { if (editingTransactionId) {