forked from cerc-io/plugeth
core/vm : fix failing testcase (#17852)
* core/vm : fix failing testcase * core/vm: fix nitpick
This commit is contained in:
parent
5d3b7bb023
commit
58e868b759
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user