Commit 2d9b3aa5 authored by obscuren's avatar obscuren

Removed debug log

parent 8e145452
...@@ -2,7 +2,6 @@ package xeth ...@@ -2,7 +2,6 @@ package xeth
import ( import (
"errors" "errors"
"fmt"
"time" "time"
"github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/crypto"
...@@ -75,7 +74,6 @@ func (self *Whisper) Watch(opts *Options) int { ...@@ -75,7 +74,6 @@ func (self *Whisper) Watch(opts *Options) int {
filter.Fn = func(msg *whisper.Message) { filter.Fn = func(msg *whisper.Message) {
opts.Fn(NewWhisperMessage(msg)) opts.Fn(NewWhisperMessage(msg))
} }
fmt.Println("new filter", filter)
i = self.Whisper.Watch(filter) i = self.Whisper.Watch(filter)
......
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