aboutsummaryrefslogtreecommitdiffstats
path: root/core/filter.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-19 23:19:54 +0800
committerobscuren <geffobscura@gmail.com>2015-03-19 23:19:54 +0800
commit14a2f42f3700640f191e0095b50a266d2a919b38 (patch)
treee22528f68c7bdab57a8cdfbcddc29df06c15457a /core/filter.go
parentb52807f0c0ff1b89cc1d7172ce1b768a34d02b00 (diff)
downloadgo-tangerine-14a2f42f3700640f191e0095b50a266d2a919b38.tar
go-tangerine-14a2f42f3700640f191e0095b50a266d2a919b38.tar.gz
go-tangerine-14a2f42f3700640f191e0095b50a266d2a919b38.tar.bz2
go-tangerine-14a2f42f3700640f191e0095b50a266d2a919b38.tar.lz
go-tangerine-14a2f42f3700640f191e0095b50a266d2a919b38.tar.xz
go-tangerine-14a2f42f3700640f191e0095b50a266d2a919b38.tar.zst
go-tangerine-14a2f42f3700640f191e0095b50a266d2a919b38.zip
fixed chain event. Closes #529
Diffstat (limited to 'core/filter.go')
-rw-r--r--core/filter.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/filter.go b/core/filter.go
index d58aa8d7c..487e82902 100644
--- a/core/filter.go
+++ b/core/filter.go
@@ -33,8 +33,8 @@ type Filter struct {
max int
topics [][][]byte
- BlockCallback func(*types.Block)
- PendingCallback func(*types.Block)
+ BlockCallback func(*types.Block, state.Logs)
+ PendingCallback func(*types.Block, state.Logs)
LogsCallback func(state.Logs)
}