Removed goroutine from "Run"

This commit is contained in:
obscuren 2014-12-15 17:09:06 +01:00
parent db89c3e1a3
commit 455241debb
1 changed files with 8 additions and 8 deletions

View File

@ -2,6 +2,7 @@ package eth
import (
"bytes"
"fmt"
"math"
"math/big"
@ -98,15 +99,14 @@ func runEthProtocol(txPool txPool, chainManager chainManager, blockPool blockPoo
}
err = self.handleStatus()
if err == nil {
go func() {
for {
err = self.handle()
if err != nil {
fmt.Println(err)
self.blockPool.RemovePeer(self.id)
break
}
}
}()
}
return
}