From 9d86a49a7327199c01977f3372c8adf748252c32 Mon Sep 17 00:00:00 2001 From: obscuren Date: Wed, 8 Oct 2014 12:06:39 +0200 Subject: Renamed Sha3Bin to Sha3 --- ethtrie/trie.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ethtrie') diff --git a/ethtrie/trie.go b/ethtrie/trie.go index 695ff436a..24f6a1f08 100644 --- a/ethtrie/trie.go +++ b/ethtrie/trie.go @@ -67,7 +67,7 @@ func (cache *Cache) PutValue(v interface{}, force bool) interface{} { enc := value.Encode() if len(enc) >= 32 || force { - sha := ethcrypto.Sha3Bin(enc) + sha := ethcrypto.Sha3(enc) cache.nodes[string(sha)] = NewNode(sha, value, true) cache.IsDirty = true -- cgit v1.2.3