diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-01 23:19:06 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-01 23:19:06 +0800 |
commit | cfe037028081ebb84ee35caa5b16fed5d125b58a (patch) | |
tree | 2e0a549f5c094fe182b05b88736830456ede717d /cmd/ethereum | |
parent | ad3a21f260a0b13048046f6c76fe5f47bdcc46de (diff) | |
download | go-tangerine-cfe037028081ebb84ee35caa5b16fed5d125b58a.tar.gz go-tangerine-cfe037028081ebb84ee35caa5b16fed5d125b58a.tar.zst go-tangerine-cfe037028081ebb84ee35caa5b16fed5d125b58a.zip |
Remove Websockets RPC transport
Diffstat (limited to 'cmd/ethereum')
-rw-r--r-- | cmd/ethereum/flags.go | 3 | ||||
-rw-r--r-- | cmd/ethereum/main.go | 4 |
2 files changed, 0 insertions, 7 deletions
diff --git a/cmd/ethereum/flags.go b/cmd/ethereum/flags.go index 7d410c8e4..fd8aee90b 100644 --- a/cmd/ethereum/flags.go +++ b/cmd/ethereum/flags.go @@ -44,7 +44,6 @@ var ( StartRpc bool StartWebSockets bool RpcPort int - WsPort int OutboundPort string ShowGenesis bool AddPeer string @@ -94,9 +93,7 @@ func Init() { flag.StringVar(&KeyStore, "keystore", "db", "system to store keyrings: db|file (db)") flag.IntVar(&RpcPort, "rpcport", 8545, "port to start json-rpc server on") - flag.IntVar(&WsPort, "wsport", 40404, "port to start websocket rpc server on") flag.BoolVar(&StartRpc, "rpc", false, "start rpc server") - flag.BoolVar(&StartWebSockets, "ws", false, "start websocket server") flag.BoolVar(&NonInteractive, "y", false, "non-interactive mode (say yes to confirmations)") flag.BoolVar(&GenAddr, "genaddr", false, "create a new priv/pub key") flag.StringVar(&SecretFile, "import", "", "imports the file given (hex or mnemonic formats)") diff --git a/cmd/ethereum/main.go b/cmd/ethereum/main.go index 45e6f7b93..63585b0f5 100644 --- a/cmd/ethereum/main.go +++ b/cmd/ethereum/main.go @@ -131,10 +131,6 @@ func main() { utils.StartRpc(ethereum, RpcPort) } - if StartWebSockets { - utils.StartWebSockets(ethereum, WsPort) - } - utils.StartEthereum(ethereum) if StartJsConsole { |