aboutsummaryrefslogtreecommitdiffstats
path: root/xeth
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-11-12 05:51:26 +0800
committerobscuren <geffobscura@gmail.com>2014-11-12 05:52:27 +0800
commit6c9e503eb8d41d331d6a74e69539a06590072190 (patch)
treeb9fd4b7abf20d9a901cd4e0f2dc3d70475cdc527 /xeth
parent75ee3b3f089e703b728bb301cc6b2abe4c111c41 (diff)
downloadgo-tangerine-6c9e503eb8d41d331d6a74e69539a06590072190.tar
go-tangerine-6c9e503eb8d41d331d6a74e69539a06590072190.tar.gz
go-tangerine-6c9e503eb8d41d331d6a74e69539a06590072190.tar.bz2
go-tangerine-6c9e503eb8d41d331d6a74e69539a06590072190.tar.lz
go-tangerine-6c9e503eb8d41d331d6a74e69539a06590072190.tar.xz
go-tangerine-6c9e503eb8d41d331d6a74e69539a06590072190.tar.zst
go-tangerine-6c9e503eb8d41d331d6a74e69539a06590072190.zip
Removed all implicit logging. Fixed gas issues and jump errors
Diffstat (limited to 'xeth')
-rw-r--r--xeth/vm_env.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/xeth/vm_env.go b/xeth/vm_env.go
index 2c36444e9..68b13e5a8 100644
--- a/xeth/vm_env.go
+++ b/xeth/vm_env.go
@@ -34,7 +34,7 @@ func (self *VMEnv) BlockHash() []byte { return self.block.Hash() }
func (self *VMEnv) Value() *big.Int { return self.value }
func (self *VMEnv) State() *state.State { return self.state }
func (self *VMEnv) GasLimit() *big.Int { return self.block.GasLimit }
-func (self *VMEnv) AddLog(state.Log) {}
+func (self *VMEnv) AddLog(*state.Log) {}
func (self *VMEnv) Transfer(from, to vm.Account, amount *big.Int) error {
return vm.Transfer(from, to, amount)
}