good morning!!!!

Skip to content
Snippets Groups Projects
Commit e18b96b4 authored by Maran Hidskes's avatar Maran Hidskes
Browse files

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

parent 66af7490
No related branches found
No related tags found
No related merge requests found
......@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment