From 58e868b759d13a39200b9283278d0c80d58b4b15 Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Fri, 5 Oct 2018 19:02:06 +0200 Subject: core/vm : fix failing testcase (#17852) * core/vm : fix failing testcase * core/vm: fix nitpick --- core/vm/instructions_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/vm/instructions_test.go b/core/vm/instructions_test.go index c0e62e4ce..73c5befaa 100644 --- a/core/vm/instructions_test.go +++ b/core/vm/instructions_test.go @@ -548,7 +548,8 @@ func TestCreate2Addreses(t *testing.T) { origin := common.BytesToAddress(common.FromHex(tt.origin)) salt := common.BytesToHash(common.FromHex(tt.salt)) code := common.FromHex(tt.code) - address := crypto.CreateAddress2(origin, salt, code) + codeHash := crypto.Keccak256(code) + address := crypto.CreateAddress2(origin, salt, codeHash) /* stack := newstack() // salt, but we don't need that for this test -- cgit v1.2.3