From 9bb1ac7564ff0588f33a1eb43e76f40664d9e527 Mon Sep 17 00:00:00 2001 From: obscuren Date: Tue, 11 Nov 2014 23:14:22 +0100 Subject: Fixes for the log method --- tests/helper/vm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/helper/vm.go') diff --git a/tests/helper/vm.go b/tests/helper/vm.go index db71fe17e..270fe5470 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(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) } -- cgit