diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-10-01 21:58:49 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-01 21:58:49 +0800 |
commit | 0731b44809f72ed5880dc3654ee70ae85420bd77 (patch) | |
tree | 68eb52c91a136e820f3656e394847c4e695afa63 /internal | |
parent | d8715fba1a366944a069397775fc52a30358eff3 (diff) | |
parent | cb84e3f02953f2df166ae69369d222dcbbd7d78d (diff) | |
download | dexon-0731b44809f72ed5880dc3654ee70ae85420bd77.tar dexon-0731b44809f72ed5880dc3654ee70ae85420bd77.tar.gz dexon-0731b44809f72ed5880dc3654ee70ae85420bd77.tar.bz2 dexon-0731b44809f72ed5880dc3654ee70ae85420bd77.tar.lz dexon-0731b44809f72ed5880dc3654ee70ae85420bd77.tar.xz dexon-0731b44809f72ed5880dc3654ee70ae85420bd77.tar.zst dexon-0731b44809f72ed5880dc3654ee70ae85420bd77.zip |
Merge pull request #3067 from karalabe/vm-avoid-hashing
cmd, core, internal, light, tests: avoid hashing the code in the VM
Diffstat (limited to 'internal')
-rw-r--r-- | internal/ethapi/tracer_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/ethapi/tracer_test.go b/internal/ethapi/tracer_test.go index 301ff4840..7c831d299 100644 --- a/internal/ethapi/tracer_test.go +++ b/internal/ethapi/tracer_test.go @@ -93,7 +93,7 @@ func (account) SetNonce(uint64) {} func (account) Balance() *big.Int { return nil } func (account) Address() common.Address { return common.Address{} } func (account) ReturnGas(*big.Int, *big.Int) {} -func (account) SetCode([]byte) {} +func (account) SetCode(common.Hash, []byte) {} func (account) ForEachStorage(cb func(key, value common.Hash) bool) {} func runTrace(tracer *JavascriptTracer) (interface{}, error) { |