aboutsummaryrefslogtreecommitdiffstats
path: root/xeth
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-01-31 00:00:33 +0800
committerobscuren <geffobscura@gmail.com>2015-01-31 00:00:33 +0800
commit2d9b3aa537a901d9b5b3aa951d71d9977c6e4703 (patch)
treedf053fdd836c23f2f94cd39d7af265ef98ad6c26 /xeth
parent8e145452828f20faa01876cbcc0e4ba9556e7ee3 (diff)
downloadgo-tangerine-2d9b3aa537a901d9b5b3aa951d71d9977c6e4703.tar
go-tangerine-2d9b3aa537a901d9b5b3aa951d71d9977c6e4703.tar.gz
go-tangerine-2d9b3aa537a901d9b5b3aa951d71d9977c6e4703.tar.bz2
go-tangerine-2d9b3aa537a901d9b5b3aa951d71d9977c6e4703.tar.lz
go-tangerine-2d9b3aa537a901d9b5b3aa951d71d9977c6e4703.tar.xz
go-tangerine-2d9b3aa537a901d9b5b3aa951d71d9977c6e4703.tar.zst
go-tangerine-2d9b3aa537a901d9b5b3aa951d71d9977c6e4703.zip
Removed debug log
Diffstat (limited to 'xeth')
-rw-r--r--xeth/whisper.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/xeth/whisper.go b/xeth/whisper.go
index 31201271b..32ad1332b 100644
--- a/xeth/whisper.go
+++ b/xeth/whisper.go
@@ -2,7 +2,6 @@ package xeth
import (
"errors"
- "fmt"
"time"
"github.com/ethereum/go-ethereum/crypto"
@@ -75,7 +74,6 @@ func (self *Whisper) Watch(opts *Options) int {
filter.Fn = func(msg *whisper.Message) {
opts.Fn(NewWhisperMessage(msg))
}
- fmt.Println("new filter", filter)
i = self.Whisper.Watch(filter)