Fixes for the log method

This commit is contained in:
obscuren
2014-11-11 23:14:22 +01:00
parent 6c9e503eb8
commit 9bb1ac7564
3 changed files with 24 additions and 3240 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(state.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)
}