diff options
author | Felix Lange <fjl@twurst.com> | 2014-11-01 01:56:25 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2014-11-01 01:56:25 +0800 |
commit | 394e0f60c20206c7f7c4c76551d11a2b14b23a4d (patch) | |
tree | e6765c3630ae19d05d9398139f708e77dd918fe4 /tests | |
parent | b95d9e005da6ed58df947732b4c126dedff5effb (diff) | |
download | go-tangerine-394e0f60c20206c7f7c4c76551d11a2b14b23a4d.tar.gz go-tangerine-394e0f60c20206c7f7c4c76551d11a2b14b23a4d.tar.zst go-tangerine-394e0f60c20206c7f7c4c76551d11a2b14b23a4d.zip |
chain, tests/helper, vm: make tests compile
They were broken by df5603de0a34e80a1, when vm.Log became ethstate.Log.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/helper/vm.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/helper/vm.go b/tests/helper/vm.go index 4827dfdee..db71fe17e 100644 --- a/tests/helper/vm.go +++ b/tests/helper/vm.go @@ -50,7 +50,7 @@ func (self *Env) Difficulty() *big.Int { return self.difficulty } func (self *Env) BlockHash() []byte { return nil } func (self *Env) State() *state.State { return self.state } func (self *Env) GasLimit() *big.Int { return self.gasLimit } -func (self *Env) AddLog(vm.Log) {} +func (self *Env) AddLog(state.Log) {} func (self *Env) Transfer(from, to vm.Account, amount *big.Int) error { return vm.Transfer(from, to, amount) } |