mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-11 05:39:03 +00:00
core/vm : fix failing testcase (#17852)
* core/vm : fix failing testcase * core/vm: fix nitpick
This commit is contained in:
parent
5d3b7bb023
commit
58e868b759
1 changed files with 2 additions and 1 deletions
|
|
@ -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 a new issue