diff options
author | obscuren <geffobscura@gmail.com> | 2014-09-14 19:42:13 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-09-14 19:42:13 +0800 |
commit | 9e89dacc6439e915784c43eaa273307f24b40be9 (patch) | |
tree | 1e184bb7d60dc7ad4367c472214717ea9dba913b | |
parent | f63cb278038dddd09aa4527529c43fdb8320f2fa (diff) | |
download | dexon-9e89dacc6439e915784c43eaa273307f24b40be9.tar.gz dexon-9e89dacc6439e915784c43eaa273307f24b40be9.tar.zst dexon-9e89dacc6439e915784c43eaa273307f24b40be9.zip |
log removed
-rw-r--r-- | peer.go | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -665,7 +665,6 @@ func (self *Peer) handleStatus(msg *ethwire.Msg) { func (p *Peer) pushHandshake() error { pubkey := p.ethereum.KeyManager().PublicKey() - fmt.Println("pubkey", pubkey) msg := ethwire.NewMessage(ethwire.MsgHandshakeTy, []interface{}{ uint32(0), []byte(p.version), []string{"eth"}, uint32(p.port), pubkey[1:], }) @@ -677,7 +676,6 @@ func (p *Peer) pushHandshake() error { func (p *Peer) handleHandshake(msg *ethwire.Msg) { c := msg.Data - fmt.Println(c, c.Len()) var ( p2pVersion = c.Get(0).Uint() |