Removed start/stop methods

This commit is contained in:
obscuren
2014-12-10 16:48:39 +01:00
parent 1b98cbbfa4
commit af6afbaa56
2 changed files with 0 additions and 24 deletions

View File

@ -393,7 +393,6 @@ func (s *Ethereum) reapDeadPeerHandler() {
// Start the ethereum
func (s *Ethereum) Start(seed bool) {
s.blockPool.Start()
s.blockManager.Start()
// Bind to addr and port
ln, err := net.Listen("tcp", ":"+s.Port)
@ -517,7 +516,6 @@ func (s *Ethereum) Stop() {
s.RpcServer.Stop()
}
s.txPool.Stop()
s.blockManager.Stop()
s.blockPool.Stop()
loggerger.Infoln("Server stopped")