Fix sample listen address in config.
This commit is contained in:
parent
15c85b5c75
commit
42055d5b7c
2 changed files with 2 additions and 2 deletions
|
@ -49,7 +49,7 @@ type config struct {
|
|||
Connect string `short:"c" long:"connect" description:"Server and port of btcd instance to connect to (default localhost:18334, mainnet: localhost:8334)"`
|
||||
DebugLevel string `short:"d" long:"debuglevel" description:"Logging level {trace, debug, info, warn, error, critical}"`
|
||||
ConfigFile string `short:"C" long:"configfile" description:"Path to configuration file"`
|
||||
SvrListeners []string `long:"listen" description:"Listen for RPC/websocket connections on this interface/port (default no listening. default port: 18332, mainnet: 8332)"`
|
||||
SvrListeners []string `long:"listen" description:"Listen for RPC/websocket connections on this interface/port (default port: 18332, mainnet: 8332)"`
|
||||
DataDir string `short:"D" long:"datadir" description:"Directory to store wallets and transactions"`
|
||||
Username string `short:"u" long:"username" description:"Username for btcd authorization"`
|
||||
Password string `short:"P" long:"password" default-mask:"-" description:"Password for btcd authorization"`
|
||||
|
|
|
@ -12,4 +12,4 @@
|
|||
; password=
|
||||
|
||||
; Listen for RPC/websocket connections on the following ports/interfaces:
|
||||
; listen=localhost:18332
|
||||
; listen=127.0.0.1:18332
|
||||
|
|
Loading…
Add table
Reference in a new issue