From b93d6ca5d274810fba61ce313c780ffdc4997472 Mon Sep 17 00:00:00 2001 From: obscuren Date: Wed, 8 Oct 2014 12:06:48 +0200 Subject: [PATCH] Renamed Sha3Bin to Sha3 --- mist/ui_lib.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()