Update signature for rpc websockets

This commit is contained in:
Taylor Gerring
2015-02-02 07:37:44 -06:00
parent 7139c1aff7
commit b2b42f759c
2 changed files with 9 additions and 15 deletions

View File

@ -205,7 +205,7 @@ func StartWebSockets(eth *eth.Ethereum, wsPort int) {
clilogger.Infoln("Starting WebSockets")
var err error
eth.WsServer, err = rpcws.NewWebSocketServer(eth, wsPort)
eth.WsServer, err = rpcws.NewWebSocketServer(xeth.New(eth), wsPort)
if err != nil {
clilogger.Errorf("Could not start RPC interface (port %v): %v", wsPort, err)
} else {