diff options
author | obscuren <geffobscura@gmail.com> | 2014-10-27 18:44:16 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-10-27 18:44:16 +0800 |
commit | 272d58662c885ab1cef8930e96fb832ae5377d96 (patch) | |
tree | e040eaec5c7e895dd6aaadedbbe30054aaa5e805 /tests | |
parent | 6623500c6b2e5fe9fa41a1ce75269955af6026e8 (diff) | |
download | dexon-272d58662c885ab1cef8930e96fb832ae5377d96.tar dexon-272d58662c885ab1cef8930e96fb832ae5377d96.tar.gz dexon-272d58662c885ab1cef8930e96fb832ae5377d96.tar.bz2 dexon-272d58662c885ab1cef8930e96fb832ae5377d96.tar.lz dexon-272d58662c885ab1cef8930e96fb832ae5377d96.tar.xz dexon-272d58662c885ab1cef8930e96fb832ae5377d96.tar.zst dexon-272d58662c885ab1cef8930e96fb832ae5377d96.zip |
Implemented LOG. Closes #159
Diffstat (limited to 'tests')
-rw-r--r-- | tests/helper/vm.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/helper/vm.go b/tests/helper/vm.go index 5660caf64..c56c5bae7 100644 --- a/tests/helper/vm.go +++ b/tests/helper/vm.go @@ -50,6 +50,7 @@ func (self *Env) Difficulty() *big.Int { return self.difficulty } func (self *Env) BlockHash() []byte { return nil } func (self *Env) State() *ethstate.State { return self.state } func (self *Env) GasLimit() *big.Int { return self.gasLimit } +func (self *Env) AddLog(vm.Log) {} func (self *Env) Transfer(from, to vm.Account, amount *big.Int) error { return vm.Transfer(from, to, amount) } |