Switched port and removed logging

This commit is contained in:
obscuren 2014-01-27 22:13:46 +01:00
parent 884f792871
commit 4a82230de5

View File

@ -133,8 +133,6 @@ func (s *Ethereum) ReapDeadPeers() {
for { for {
eachPeer(s.peers, func(p *Peer, e *list.Element) { eachPeer(s.peers, func(p *Peer, e *list.Element) {
if atomic.LoadInt32(&p.disconnect) == 1 || (p.inbound && (time.Now().Unix()-p.lastPong) > int64(5*time.Minute)) { if atomic.LoadInt32(&p.disconnect) == 1 || (p.inbound && (time.Now().Unix()-p.lastPong) > int64(5*time.Minute)) {
log.Println("Dead peer found .. reaping")
s.peers.Remove(e) s.peers.Remove(e)
} }
}) })
@ -145,8 +143,8 @@ func (s *Ethereum) ReapDeadPeers() {
// Start the ethereum // Start the ethereum
func (s *Ethereum) Start() { func (s *Ethereum) Start() {
// For now this function just blocks the main thread // Bind to addr and port
ln, err := net.Listen("tcp", ":12345") ln, err := net.Listen("tcp", ":30303")
if err != nil { if err != nil {
// This is mainly for testing to create a "network" // This is mainly for testing to create a "network"
if ethutil.Config.Debug { if ethutil.Config.Debug {
@ -167,6 +165,7 @@ func (s *Ethereum) Start() {
// Starting accepting connections // Starting accepting connections
go func() { go func() {
for { for {
log.Println("Ready and accepting connections")
conn, err := ln.Accept() conn, err := ln.Accept()
if err != nil { if err != nil {
log.Println(err) log.Println(err)
@ -184,17 +183,6 @@ func (s *Ethereum) Start() {
// Start the tx pool // Start the tx pool
s.TxPool.Start() s.TxPool.Start()
// TMP
/*
go func() {
for {
s.Broadcast("block", s.blockManager.bc.GenesisBlock().RlpEncode())
time.Sleep(1000 * time.Millisecond)
}
}()
*/
} }
func (s *Ethereum) Stop() { func (s *Ethereum) Stop() {