aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2014-11-01 01:56:25 +0800
committerFelix Lange <fjl@twurst.com>2014-11-01 01:56:25 +0800
commit394e0f60c20206c7f7c4c76551d11a2b14b23a4d (patch)
treee6765c3630ae19d05d9398139f708e77dd918fe4 /tests
parentb95d9e005da6ed58df947732b4c126dedff5effb (diff)
downloadgo-tangerine-394e0f60c20206c7f7c4c76551d11a2b14b23a4d.tar
go-tangerine-394e0f60c20206c7f7c4c76551d11a2b14b23a4d.tar.gz
go-tangerine-394e0f60c20206c7f7c4c76551d11a2b14b23a4d.tar.bz2
go-tangerine-394e0f60c20206c7f7c4c76551d11a2b14b23a4d.tar.lz
go-tangerine-394e0f60c20206c7f7c4c76551d11a2b14b23a4d.tar.xz
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.go2
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)
}