aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/utils/cmd.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-01-29 11:39:49 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-01-29 11:39:49 +0800
commit726852e3d3ba5c2167bbdb3bdd3ecbaff6b4f242 (patch)
treed23a034b2474402b20f9e43dc6e82e2a5af6c111 /cmd/utils/cmd.go
parent32fbc0d334220c4be2c2b7af856523aafa5b8a44 (diff)
downloadgo-tangerine-726852e3d3ba5c2167bbdb3bdd3ecbaff6b4f242.tar
go-tangerine-726852e3d3ba5c2167bbdb3bdd3ecbaff6b4f242.tar.gz
go-tangerine-726852e3d3ba5c2167bbdb3bdd3ecbaff6b4f242.tar.bz2
go-tangerine-726852e3d3ba5c2167bbdb3bdd3ecbaff6b4f242.tar.lz
go-tangerine-726852e3d3ba5c2167bbdb3bdd3ecbaff6b4f242.tar.xz
go-tangerine-726852e3d3ba5c2167bbdb3bdd3ecbaff6b4f242.tar.zst
go-tangerine-726852e3d3ba5c2167bbdb3bdd3ecbaff6b4f242.zip
Remove old websocket implementation
Diffstat (limited to 'cmd/utils/cmd.go')
-rw-r--r--cmd/utils/cmd.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/cmd/utils/cmd.go b/cmd/utils/cmd.go
index 1d4655433..43ad88c55 100644
--- a/cmd/utils/cmd.go
+++ b/cmd/utils/cmd.go
@@ -41,7 +41,6 @@ import (
rpchttp "github.com/ethereum/go-ethereum/rpc/http"
rpcws "github.com/ethereum/go-ethereum/rpc/ws"
"github.com/ethereum/go-ethereum/state"
- // "github.com/ethereum/go-ethereum/websocket"
"github.com/ethereum/go-ethereum/xeth"
)
@@ -205,8 +204,6 @@ func StartRpc(ethereum *eth.Ethereum, RpcPort int) {
func StartWebSockets(eth *eth.Ethereum, wsPort int) {
clilogger.Infoln("Starting WebSockets")
- // sock := websocket.NewWebSocketServer(eth)
- // go sock.Serv()
var err error
eth.WsServer, err = rpcws.NewWebSocketServer(eth, wsPort)
if err != nil {