1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00

Show first four characters of account after 0x in wallet

This commit is contained in:
Whymarrh Whitby 2018-07-18 10:21:15 -02:30
parent 45faf3d558
commit 71d64e74a5

View File

@ -175,7 +175,7 @@ WalletView.prototype.render = function () {
this.setState({ copyToClipboardPressed: false })
},
}, [
`${checksummedAddress.slice(0, 4)}...${checksummedAddress.slice(-4)}`,
`${checksummedAddress.slice(0, 6)}...${checksummedAddress.slice(-4)}`,
h('i.fa.fa-clipboard', { style: { marginLeft: '8px' } }),
]),
]),