diff options
author | obscuren <geffobscura@gmail.com> | 2015-01-09 05:18:23 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-01-09 05:18:23 +0800 |
commit | 26f066f0c7570bcca43299721c2b7a1a70186ee3 (patch) | |
tree | 1254867236de41cdc31ab9fc38734d8a331090b9 /whisper | |
parent | 4a0ade4788b0e8d53c6b0eabaf9652643b6a073a (diff) | |
download | dexon-26f066f0c7570bcca43299721c2b7a1a70186ee3.tar.gz dexon-26f066f0c7570bcca43299721c2b7a1a70186ee3.tar.zst dexon-26f066f0c7570bcca43299721c2b7a1a70186ee3.zip |
just enable by default
Diffstat (limited to 'whisper')
-rw-r--r-- | whisper/whisper.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/whisper/whisper.go b/whisper/whisper.go index 3ff4bac5a..71a4e841e 100644 --- a/whisper/whisper.go +++ b/whisper/whisper.go @@ -4,6 +4,7 @@ import ( "bytes" "crypto/ecdsa" "errors" + "fmt" "sync" "time" @@ -143,6 +144,7 @@ func (self *Whisper) msgHandler(peer *p2p.Peer, ws p2p.MsgReadWriter) error { if err != nil { return err } + fmt.Println("reading message") envelope, err := NewEnvelopeFromReader(msg.Payload) if err != nil { @@ -160,6 +162,7 @@ func (self *Whisper) msgHandler(peer *p2p.Peer, ws p2p.MsgReadWriter) error { // takes care of adding envelopes to the messages pool. At this moment no sanity checks are being performed. func (self *Whisper) add(envelope *Envelope) error { + fmt.Println("adding") if !envelope.valid() { return errors.New("invalid pow provided for envelope") } |