aboutsummaryrefslogtreecommitdiffstats
path: root/event
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-02-24 03:27:00 +0800
committerobscuren <geffobscura@gmail.com>2015-02-24 03:27:00 +0800
commit7c510109cdcd6251724df6c7705b27043c3168f8 (patch)
tree96d434a8a25b7286dc5308237ba85d16c7dc557e /event
parent359677b6739e9df26988aacf87fb6069b61c9850 (diff)
downloaddexon-7c510109cdcd6251724df6c7705b27043c3168f8.tar
dexon-7c510109cdcd6251724df6c7705b27043c3168f8.tar.gz
dexon-7c510109cdcd6251724df6c7705b27043c3168f8.tar.bz2
dexon-7c510109cdcd6251724df6c7705b27043c3168f8.tar.lz
dexon-7c510109cdcd6251724df6c7705b27043c3168f8.tar.xz
dexon-7c510109cdcd6251724df6c7705b27043c3168f8.tar.zst
dexon-7c510109cdcd6251724df6c7705b27043c3168f8.zip
skipping test
Diffstat (limited to 'event')
-rw-r--r--event/filter/eth_filter.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/event/filter/eth_filter.go b/event/filter/eth_filter.go
index 73d2cd935..4ba66a7e0 100644
--- a/event/filter/eth_filter.go
+++ b/event/filter/eth_filter.go
@@ -3,7 +3,6 @@ package filter
// TODO make use of the generic filtering system
import (
- "fmt"
"sync"
"github.com/ethereum/go-ethereum/core"
@@ -75,7 +74,6 @@ out:
case event := <-events.Chan():
switch event := event.(type) {
case core.ChainEvent:
- fmt.Println("filter start")
self.filterMu.RLock()
for _, filter := range self.filters {
if filter.BlockCallback != nil {
@@ -83,7 +81,6 @@ out:
}
}
self.filterMu.RUnlock()
- fmt.Println("filter stop")
case core.PendingBlockEvent:
self.filterMu.RLock()