aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-12-10 23:48:39 +0800
committerobscuren <geffobscura@gmail.com>2014-12-10 23:48:39 +0800
commitaf6afbaa56efa15abe6a03665c6674b0e2f591c8 (patch)
treebe1f789206f1bec733a1ef0e5f074eb7d686012e /ethereum.go
parent1b98cbbfa4f587107fa15fccde7d22102ea4b1c0 (diff)
downloaddexon-af6afbaa56efa15abe6a03665c6674b0e2f591c8.tar.gz
dexon-af6afbaa56efa15abe6a03665c6674b0e2f591c8.tar.zst
dexon-af6afbaa56efa15abe6a03665c6674b0e2f591c8.zip
Removed start/stop methods
Diffstat (limited to 'ethereum.go')
-rw-r--r--ethereum.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/ethereum.go b/ethereum.go
index 94e46b556..e8b1a9500 100644
--- a/ethereum.go
+++ b/ethereum.go
@@ -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")