diff options
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 |