aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/ethereum
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-03-04 03:16:16 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-03-04 03:16:16 +0800
commitb1603f166e36de5959e780c8e8fc866ae3ceeca0 (patch)
tree25ef99f9acf93648698a02c399021eedd29a4afc /cmd/ethereum
parent6e50a1e9f59532671eaa2bb2f2081a67f659bd0d (diff)
parent4cb0bfe9395f3a45fcea00bc753cbd2c20ca78e8 (diff)
downloaddexon-b1603f166e36de5959e780c8e8fc866ae3ceeca0.tar
dexon-b1603f166e36de5959e780c8e8fc866ae3ceeca0.tar.gz
dexon-b1603f166e36de5959e780c8e8fc866ae3ceeca0.tar.bz2
dexon-b1603f166e36de5959e780c8e8fc866ae3ceeca0.tar.lz
dexon-b1603f166e36de5959e780c8e8fc866ae3ceeca0.tar.xz
dexon-b1603f166e36de5959e780c8e8fc866ae3ceeca0.tar.zst
dexon-b1603f166e36de5959e780c8e8fc866ae3ceeca0.zip
Merge pull request #408 from tgerring/removews
Remove Websockets RPC transport
Diffstat (limited to 'cmd/ethereum')
-rw-r--r--cmd/ethereum/flags.go3
-rw-r--r--cmd/ethereum/main.go4
2 files changed, 0 insertions, 7 deletions
diff --git a/cmd/ethereum/flags.go b/cmd/ethereum/flags.go
index 356571a23..46a63d849 100644
--- a/cmd/ethereum/flags.go
+++ b/cmd/ethereum/flags.go
@@ -46,7 +46,6 @@ var (
StartWebSockets bool
RpcListenAddress string
RpcPort int
- WsPort int
OutboundPort string
ShowGenesis bool
AddPeer string
@@ -98,9 +97,7 @@ func Init() {
flag.StringVar(&RpcListenAddress, "rpcaddr", "127.0.0.1", "address for json-rpc server to listen on")
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 f79f948d1..ff306b10f 100644
--- a/cmd/ethereum/main.go
+++ b/cmd/ethereum/main.go
@@ -128,10 +128,6 @@ func main() {
utils.StartRpc(ethereum, RpcListenAddress, RpcPort)
}
- if StartWebSockets {
- utils.StartWebSockets(ethereum, WsPort)
- }
-
utils.StartEthereum(ethereum)
fmt.Printf("Welcome to the FRONTIER\n")