diff options
Diffstat (limited to 'xeth')
-rw-r--r-- | xeth/vm_env.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xeth/vm_env.go b/xeth/vm_env.go index 4a2827ff4..ce53e9a30 100644 --- a/xeth/vm_env.go +++ b/xeth/vm_env.go @@ -39,7 +39,7 @@ func (self *VMEnv) State() *state.StateDB { return self.state } func (self *VMEnv) GasLimit() *big.Int { return self.block.GasLimit } func (self *VMEnv) Depth() int { return self.depth } func (self *VMEnv) SetDepth(i int) { self.depth = i } -func (self *VMEnv) AddLog(log *state.Log) { +func (self *VMEnv) AddLog(log state.Log) { self.state.AddLog(log) } func (self *VMEnv) Transfer(from, to vm.Account, amount *big.Int) error { |