chain, tests/helper, vm: make tests compile

They were broken by df5603de0a, when vm.Log became ethstate.Log.
This commit is contained in:
Felix Lange
2014-10-31 18:56:25 +01:00
parent b95d9e005d
commit 394e0f60c2
3 changed files with 6 additions and 4 deletions

View File

@ -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)
}