diff options
author | Péter Szilágyi <peterke@gmail.com> | 2019-01-04 15:51:12 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-04 15:51:12 +0800 |
commit | 391d4cb9b53eb9f71862cbb8a6cca332d5a76f94 (patch) | |
tree | 7697f49be5353066df0968ff8af4169dfda2cdb1 /trie/hasher.go | |
parent | 3f421aca54bb5216e0f949966481fa4516c52273 (diff) | |
parent | 8ec344bf604a56e4bd313660448345708c5aeb51 (diff) | |
download | go-tangerine-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.tar go-tangerine-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.tar.gz go-tangerine-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.tar.bz2 go-tangerine-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.tar.lz go-tangerine-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.tar.xz go-tangerine-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.tar.zst go-tangerine-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.zip |
Merge pull request #18390 from realdave/remove-sha3-pkg
vendor, crypto, swarm: switch over to upstream sha3 package
Diffstat (limited to 'trie/hasher.go')
-rw-r--r-- | trie/hasher.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/trie/hasher.go b/trie/hasher.go index 7b1d7793f..9d6756b6f 100644 --- a/trie/hasher.go +++ b/trie/hasher.go @@ -21,8 +21,8 @@ import ( "sync" "github.com/ethereum/go-ethereum/common" - "github.com/ethereum/go-ethereum/crypto/sha3" "github.com/ethereum/go-ethereum/rlp" + "golang.org/x/crypto/sha3" ) type hasher struct { @@ -57,7 +57,7 @@ var hasherPool = sync.Pool{ New: func() interface{} { return &hasher{ tmp: make(sliceBuffer, 0, 550), // cap is as large as a full fullNode. - sha: sha3.NewKeccak256().(keccakState), + sha: sha3.NewLegacyKeccak256().(keccakState), } }, } |