Enable websockets for mist. Closes #218

This commit is contained in:
obscuren
2014-12-23 15:46:46 +01:00
parent e531c6fc6c
commit f468a9a0e2
2 changed files with 9 additions and 0 deletions

View File

@ -69,6 +69,10 @@ func run() error {
utils.StartRpc(ethereum, RpcPort)
}
if StartWebSockets {
utils.StartWebSockets(ethereum)
}
gui := NewWindow(ethereum, config, clientIdentity, KeyRing, LogLevel)
gui.stdLog = stdLog