diff options
author | obscuren <geffobscura@gmail.com> | 2014-10-08 18:06:48 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-10-08 18:06:48 +0800 |
commit | b93d6ca5d274810fba61ce313c780ffdc4997472 (patch) | |
tree | 662b6bd9a4daeecdeb6a0492c04ecd6cb6efd2d5 /mist | |
parent | b4fa28a3e65677a4e00d013d5193420983f5e712 (diff) | |
download | go-tangerine-b93d6ca5d274810fba61ce313c780ffdc4997472.tar go-tangerine-b93d6ca5d274810fba61ce313c780ffdc4997472.tar.gz go-tangerine-b93d6ca5d274810fba61ce313c780ffdc4997472.tar.bz2 go-tangerine-b93d6ca5d274810fba61ce313c780ffdc4997472.tar.lz go-tangerine-b93d6ca5d274810fba61ce313c780ffdc4997472.tar.xz go-tangerine-b93d6ca5d274810fba61ce313c780ffdc4997472.tar.zst go-tangerine-b93d6ca5d274810fba61ce313c780ffdc4997472.zip |
Renamed Sha3Bin to Sha3
Diffstat (limited to 'mist')
-rw-r--r-- | mist/ui_lib.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mist/ui_lib.go b/mist/ui_lib.go index e77336c90..f39b56f0b 100644 --- a/mist/ui_lib.go +++ b/mist/ui_lib.go @@ -51,7 +51,7 @@ func (self *UiLib) LookupDomain(domain string) string { world := self.World() if len(domain) > 32 { - domain = string(ethcrypto.Sha3Bin([]byte(domain))) + domain = string(ethcrypto.Sha3([]byte(domain))) } data := world.Config().Get("DnsReg").StorageString(domain).Bytes() |