diff options
Diffstat (limited to 'cmd/mist/main.go')
-rw-r--r-- | cmd/mist/main.go | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/cmd/mist/main.go b/cmd/mist/main.go index 3abe16767..1d4403848 100644 --- a/cmd/mist/main.go +++ b/cmd/mist/main.go @@ -73,11 +73,7 @@ func run() error { utils.KeyTasks(ethereum.KeyManager(), KeyRing, GenAddr, SecretFile, ExportDir, NonInteractive) if StartRpc { - utils.StartRpc(ethereum, RpcPort) - } - - if StartWebSockets { - utils.StartWebSockets(ethereum, WsPort) + utils.StartRpc(ethereum, RpcListenAddress, RpcPort) } gui := NewWindow(ethereum, config, KeyRing, LogLevel) |