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 /common | |
parent | 3f421aca54bb5216e0f949966481fa4516c52273 (diff) | |
parent | 8ec344bf604a56e4bd313660448345708c5aeb51 (diff) | |
download | dexon-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.tar dexon-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.tar.gz dexon-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.tar.bz2 dexon-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.tar.lz dexon-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.tar.xz dexon-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.tar.zst dexon-391d4cb9b53eb9f71862cbb8a6cca332d5a76f94.zip |
Merge pull request #18390 from realdave/remove-sha3-pkg
vendor, crypto, swarm: switch over to upstream sha3 package
Diffstat (limited to 'common')
-rw-r--r-- | common/types.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/types.go b/common/types.go index a4b999526..0f4892d28 100644 --- a/common/types.go +++ b/common/types.go @@ -27,7 +27,7 @@ import ( "strings" "github.com/ethereum/go-ethereum/common/hexutil" - "github.com/ethereum/go-ethereum/crypto/sha3" + "golang.org/x/crypto/sha3" ) // Lengths of hashes and addresses in bytes. @@ -196,7 +196,7 @@ func (a Address) Hash() Hash { return BytesToHash(a[:]) } // Hex returns an EIP55-compliant hex string representation of the address. func (a Address) Hex() string { unchecksummed := hex.EncodeToString(a[:]) - sha := sha3.NewKeccak256() + sha := sha3.NewLegacyKeccak256() sha.Write([]byte(unchecksummed)) hash := sha.Sum(nil) |