aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-07-03 22:46:49 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-07-03 22:46:49 +0800
commit8181929c9a17b23d8a2eab55b2e8f584fe9b6c50 (patch)
treebd0281207e28e79919d2cc21353fb9232a8d48ad
parent03129e7c93a4705eb159a2dacbab6e3755fe02ed (diff)
parent6afdc52483d068a2de346505e8951dd9f064b99f (diff)
downloadgo-tangerine-8181929c9a17b23d8a2eab55b2e8f584fe9b6c50.tar
go-tangerine-8181929c9a17b23d8a2eab55b2e8f584fe9b6c50.tar.gz
go-tangerine-8181929c9a17b23d8a2eab55b2e8f584fe9b6c50.tar.bz2
go-tangerine-8181929c9a17b23d8a2eab55b2e8f584fe9b6c50.tar.lz
go-tangerine-8181929c9a17b23d8a2eab55b2e8f584fe9b6c50.tar.xz
go-tangerine-8181929c9a17b23d8a2eab55b2e8f584fe9b6c50.tar.zst
go-tangerine-8181929c9a17b23d8a2eab55b2e8f584fe9b6c50.zip
Merge pull request #1391 from tgerring/consolefalse
Prevent false from printing on console
-rw-r--r--core/filter.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/filter.go b/core/filter.go
index fcdf68dd0..121e4642d 100644
--- a/core/filter.go
+++ b/core/filter.go
@@ -1,7 +1,6 @@
package core
import (
- "fmt"
"math"
"github.com/ethereum/go-ethereum/common"
@@ -80,7 +79,6 @@ func (self *Filter) Find() state.Logs {
done:
for i := 0; block != nil; i++ {
- fmt.Println(block.NumberU64() == 0)
// Quit on latest
switch {
case block.NumberU64() == 0: