diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-10-01 20:44:53 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-10-01 21:01:58 +0800 |
commit | cb84e3f02953f2df166ae69369d222dcbbd7d78d (patch) | |
tree | 68eb52c91a136e820f3656e394847c4e695afa63 /tests/util.go | |
parent | d8715fba1a366944a069397775fc52a30358eff3 (diff) | |
download | go-tangerine-cb84e3f02953f2df166ae69369d222dcbbd7d78d.tar go-tangerine-cb84e3f02953f2df166ae69369d222dcbbd7d78d.tar.gz go-tangerine-cb84e3f02953f2df166ae69369d222dcbbd7d78d.tar.bz2 go-tangerine-cb84e3f02953f2df166ae69369d222dcbbd7d78d.tar.lz go-tangerine-cb84e3f02953f2df166ae69369d222dcbbd7d78d.tar.xz go-tangerine-cb84e3f02953f2df166ae69369d222dcbbd7d78d.tar.zst go-tangerine-cb84e3f02953f2df166ae69369d222dcbbd7d78d.zip |
cmd, core, internal, light, tests: avoid hashing the code in the VM
Diffstat (limited to 'tests/util.go')
-rw-r--r-- | tests/util.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/util.go b/tests/util.go index 08fac2dd1..ffbcb9d56 100644 --- a/tests/util.go +++ b/tests/util.go @@ -108,12 +108,13 @@ func StateObjectFromAccount(db ethdb.Database, addr string, account Account, onD account.Code = account.Code[2:] } code := common.Hex2Bytes(account.Code) + codeHash := crypto.Keccak256Hash(code) obj := state.NewObject(common.HexToAddress(addr), state.Account{ Balance: common.Big(account.Balance), - CodeHash: crypto.Keccak256(code), + CodeHash: codeHash[:], Nonce: common.Big(account.Nonce).Uint64(), }, onDirty) - obj.SetCode(code) + obj.SetCode(codeHash, code) return obj } |