diff options
author | obscuren <geffobscura@gmail.com> | 2014-11-12 05:51:26 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-11-12 05:52:27 +0800 |
commit | 6c9e503eb8d41d331d6a74e69539a06590072190 (patch) | |
tree | b9fd4b7abf20d9a901cd4e0f2dc3d70475cdc527 /state/state.go | |
parent | 75ee3b3f089e703b728bb301cc6b2abe4c111c41 (diff) | |
download | dexon-6c9e503eb8d41d331d6a74e69539a06590072190.tar dexon-6c9e503eb8d41d331d6a74e69539a06590072190.tar.gz dexon-6c9e503eb8d41d331d6a74e69539a06590072190.tar.bz2 dexon-6c9e503eb8d41d331d6a74e69539a06590072190.tar.lz dexon-6c9e503eb8d41d331d6a74e69539a06590072190.tar.xz dexon-6c9e503eb8d41d331d6a74e69539a06590072190.tar.zst dexon-6c9e503eb8d41d331d6a74e69539a06590072190.zip |
Removed all implicit logging. Fixed gas issues and jump errors
Diffstat (limited to 'state/state.go')
-rw-r--r-- | state/state.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/state/state.go b/state/state.go index 8eb348dda..e3012f019 100644 --- a/state/state.go +++ b/state/state.go @@ -37,7 +37,7 @@ func (self *State) EmptyLogs() { self.logs = nil } -func (self *State) AddLog(log Log) { +func (self *State) AddLog(log *Log) { self.logs = append(self.logs, log) } |