diff options
-rw-r--r-- | ethereum.go | 9 | ||||
-rw-r--r-- | peer.go | 1 |
2 files changed, 0 insertions, 10 deletions
diff --git a/ethereum.go b/ethereum.go index b9fc94d50..0137f68de 100644 --- a/ethereum.go +++ b/ethereum.go @@ -187,15 +187,6 @@ func (s *Ethereum) Start() { // This is mainly for testing to create a "network" if ethutil.Config.Debug { log.Println("Connection listening disabled. Acting as client") - - /* - err = s.ConnectToPeer("localhost:12345") - if err != nil { - log.Println("Error starting ethereum", err) - - s.Stop() - } - */ } else { log.Fatal(err) } @@ -282,7 +282,6 @@ func (p *Peer) Start(seed bool) { peerHost, _, _ := net.SplitHostPort(p.conn.LocalAddr().String()) servHost, _, _ := net.SplitHostPort(p.conn.RemoteAddr().String()) - log.Println(peerHost, servHost) if peerHost == servHost { log.Println("Connected to self") |