Commit 6afdc524 authored by Taylor Gerring's avatar Taylor Gerring

Prevent debug value from printing on console

parent 03129e7c
package core package core
import ( import (
"fmt"
"math" "math"
"github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common"
...@@ -80,7 +79,6 @@ func (self *Filter) Find() state.Logs { ...@@ -80,7 +79,6 @@ func (self *Filter) Find() state.Logs {
done: done:
for i := 0; block != nil; i++ { for i := 0; block != nil; i++ {
fmt.Println(block.NumberU64() == 0)
// Quit on latest // Quit on latest
switch { switch {
case block.NumberU64() == 0: case block.NumberU64() == 0:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment