diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-02-09 19:24:42 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-02-09 19:24:42 +0800 |
commit | 900e124beea551ded290f61e7bf85ff6b2e4a29e (patch) | |
tree | f4447602e77956699a8df44a1edc9932688d48fd /common | |
parent | 7486904b92449c5955bb682f4ff98752906912b8 (diff) | |
download | dexon-900e124beea551ded290f61e7bf85ff6b2e4a29e.tar.gz dexon-900e124beea551ded290f61e7bf85ff6b2e4a29e.tar.zst dexon-900e124beea551ded290f61e7bf85ff6b2e4a29e.zip |
cmd, common, node, rpc: rework naming convention to canonical one
Diffstat (limited to 'common')
-rw-r--r-- | common/defaults.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/common/defaults.go b/common/defaults.go index c5a88d7a3..8a136fa80 100644 --- a/common/defaults.go +++ b/common/defaults.go @@ -22,11 +22,11 @@ import ( ) const ( - DefaultIpcSocket = "geth.ipc" // Default (relative) name of the IPC RPC socket - DefaultHttpHost = "localhost" // Default host interface for the HTTP RPC server - DefaultHttpPort = 8545 // Default TCP port for the HTTP RPC server - DefaultWsHost = "localhost" // Default host interface for the websocket RPC server - DefaultWsPort = 8546 // Default TCP port for the websocket RPC server + DefaultIPCSocket = "geth.ipc" // Default (relative) name of the IPC RPC socket + DefaultHTTPHost = "localhost" // Default host interface for the HTTP RPC server + DefaultHTTPPort = 8545 // Default TCP port for the HTTP RPC server + DefaultWSHost = "localhost" // Default host interface for the websocket RPC server + DefaultWSPort = 8546 // Default TCP port for the websocket RPC server ) // DefaultDataDir is the default data directory to use for the databases and other |