aboutsummaryrefslogtreecommitdiffstats
path: root/state/state.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-12-04 19:35:23 +0800
committerobscuren <geffobscura@gmail.com>2014-12-04 19:35:23 +0800
commit3043b233ea4df9b630638d75f3589b94653ccfa9 (patch)
tree8e426de17ebd46bcbd830abb78af58dd4035206c /state/state.go
parentbff5999efaaa0aa7a2b6518b58d489ad4be9e4ff (diff)
downloadgo-tangerine-3043b233ea4df9b630638d75f3589b94653ccfa9.tar
go-tangerine-3043b233ea4df9b630638d75f3589b94653ccfa9.tar.gz
go-tangerine-3043b233ea4df9b630638d75f3589b94653ccfa9.tar.bz2
go-tangerine-3043b233ea4df9b630638d75f3589b94653ccfa9.tar.lz
go-tangerine-3043b233ea4df9b630638d75f3589b94653ccfa9.tar.xz
go-tangerine-3043b233ea4df9b630638d75f3589b94653ccfa9.tar.zst
go-tangerine-3043b233ea4df9b630638d75f3589b94653ccfa9.zip
Log is now interface
Diffstat (limited to 'state/state.go')
-rw-r--r--state/state.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/state/state.go b/state/state.go
index 39c5f33cc..ca3f2af9c 100644
--- a/state/state.go
+++ b/state/state.go
@@ -37,7 +37,7 @@ func (self *StateDB) EmptyLogs() {
self.logs = nil
}
-func (self *StateDB) AddLog(log *Log) {
+func (self *StateDB) AddLog(log Log) {
self.logs = append(self.logs, log)
}