aboutsummaryrefslogtreecommitdiffstats
path: root/core/state/sync_test.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-10-01 20:44:53 +0800
committerPéter Szilágyi <peterke@gmail.com>2016-10-01 21:01:58 +0800
commitcb84e3f02953f2df166ae69369d222dcbbd7d78d (patch)
tree68eb52c91a136e820f3656e394847c4e695afa63 /core/state/sync_test.go
parentd8715fba1a366944a069397775fc52a30358eff3 (diff)
downloadgo-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 'core/state/sync_test.go')
-rw-r--r--core/state/sync_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/state/sync_test.go b/core/state/sync_test.go
index c768781a4..670e1fb1b 100644
--- a/core/state/sync_test.go
+++ b/core/state/sync_test.go
@@ -54,7 +54,7 @@ func makeTestState() (ethdb.Database, common.Hash, []*testAccount) {
acc.nonce = uint64(42 * i)
if i%3 == 0 {
- obj.SetCode([]byte{i, i, i, i, i})
+ obj.SetCode(crypto.Keccak256Hash([]byte{i, i, i, i, i}), []byte{i, i, i, i, i})
acc.code = []byte{i, i, i, i, i}
}
state.UpdateStateObject(obj)