Commit e18b96b4 authored by Maran's avatar Maran

Fix an issue where we don't have the rpc so we dont have to close it

parent 66af7490
......@@ -339,7 +339,9 @@ func (s *Ethereum) Stop() {
close(s.quit)
s.RpcServer.Stop()
if s.RpcServer != nil {
s.RpcServer.Stop()
}
s.txPool.Stop()
s.stateManager.Stop()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment