Remove Websockets RPC transport

This commit is contained in:
Taylor Gerring
2015-03-01 16:19:06 +01:00
parent ad3a21f260
commit cfe0370280
7 changed files with 1 additions and 152 deletions

View File

@ -127,7 +127,6 @@ type Ethereum struct {
miner *miner.Miner
RpcServer rpc.RpcServer
WsServer rpc.RpcServer
keyManager *crypto.KeyManager
logger ethlogger.LogSystem
@ -285,9 +284,7 @@ func (s *Ethereum) Stop() {
if s.RpcServer != nil {
s.RpcServer.Stop()
}
if s.WsServer != nil {
s.WsServer.Stop()
}
s.txPool.Stop()
s.eventMux.Stop()
s.blockPool.Stop()