diff options
author | obscuren <geffobscura@gmail.com> | 2015-01-31 00:00:33 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-01-31 00:00:33 +0800 |
commit | 2d9b3aa537a901d9b5b3aa951d71d9977c6e4703 (patch) | |
tree | df053fdd836c23f2f94cd39d7af265ef98ad6c26 /xeth | |
parent | 8e145452828f20faa01876cbcc0e4ba9556e7ee3 (diff) | |
download | go-tangerine-2d9b3aa537a901d9b5b3aa951d71d9977c6e4703.tar.gz go-tangerine-2d9b3aa537a901d9b5b3aa951d71d9977c6e4703.tar.zst go-tangerine-2d9b3aa537a901d9b5b3aa951d71d9977c6e4703.zip |
Removed debug log
Diffstat (limited to 'xeth')
-rw-r--r-- | xeth/whisper.go | 2 |
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) |