mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Identicon in send token show who you are sending to, not the token's identicon.
This commit is contained in:
parent
89af385a35
commit
7362fb8dfc
@ -152,7 +152,7 @@ ConfirmSendToken.prototype.getData = function () {
|
|||||||
name: identities[txParams.from].name,
|
name: identities[txParams.from].name,
|
||||||
},
|
},
|
||||||
to: {
|
to: {
|
||||||
address: txParams.to,
|
address: value,
|
||||||
name: identities[value] ? identities[value].name : 'New Recipient',
|
name: identities[value] ? identities[value].name : 'New Recipient',
|
||||||
},
|
},
|
||||||
memo: txParams.memo || '',
|
memo: txParams.memo || '',
|
||||||
@ -290,7 +290,7 @@ ConfirmSendToken.prototype.render = function () {
|
|||||||
h(
|
h(
|
||||||
Identicon,
|
Identicon,
|
||||||
{
|
{
|
||||||
address: txParams.to,
|
address: toAddress,
|
||||||
diameter: 60,
|
diameter: 60,
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user