From 9faecc847b803e248a5b4d3d256a90b6c55fd26f Mon Sep 17 00:00:00 2001 From: Jhih-Ming Huang Date: Fri, 8 Mar 2019 20:25:54 +0800 Subject: remove dexon/crypto/sha3 pkg. --- core/vm/tools/transaction.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'core/vm/tools/transaction.go') diff --git a/core/vm/tools/transaction.go b/core/vm/tools/transaction.go index 1ff36a36e..4a230f443 100644 --- a/core/vm/tools/transaction.go +++ b/core/vm/tools/transaction.go @@ -8,10 +8,11 @@ import ( "math/big" "sync/atomic" + "golang.org/x/crypto/sha3" + "github.com/dexon-foundation/dexon/common" "github.com/dexon-foundation/dexon/common/hexutil" "github.com/dexon-foundation/dexon/crypto" - "github.com/dexon-foundation/dexon/crypto/sha3" "github.com/dexon-foundation/dexon/rlp" ) @@ -248,7 +249,7 @@ func (tx *Transaction) Hash() common.Hash { return v } func rlpHash(x interface{}) (h common.Hash) { - hw := sha3.NewKeccak256() + hw := sha3.NewLegacyKeccak256() rlp.Encode(hw, x) hw.Sum(h[:0]) return h -- cgit v1.2.3