Skip to content

Commit 61cf6e1

Browse files
sample-btcwallet: fix missing opts proposed by make sample-conf-check
1 parent 66b4376 commit 61cf6e1

File tree

1 file changed

+91
-3
lines changed

1 file changed

+91
-3
lines changed

sample-btcwallet.conf

Lines changed: 91 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
; used in this directory for mainnet and testnet wallets, respectively.
2222
; appdata=~/.btcwallet
2323

24+
; DEPRECATED -- use appdata instead.
25+
; datadir=
26+
2427

2528
; ------------------------------------------------------------------------------
2629
; RPC client settings
@@ -64,14 +67,15 @@
6467
; modified by some options such as 'testnet', so it is recommended to not
6568
; specify a port and allow a proper default to be chosen unless you have a
6669
; specific reason to do otherwise.
67-
; rpclisten= ; all interfaces on default port
70+
; Default:
71+
; rpclisten=
6872
; rpclisten=0.0.0.0 ; all ipv4 interfaces on default port
6973
; rpclisten=:: ; all ipv6 interfaces on default port
7074
; rpclisten=:8332 ; all interfaces on port 8332
7175
; rpclisten=0.0.0.0:8332 ; all ipv4 interfaces on port 8332
7276
; rpclisten=[::]:8332 ; all ipv6 interfaces on port 8332
73-
; rpclisten=127.0.0.1:8332 ; only ipv4 localhost on port 8332 (this is a default)
74-
; rpclisten=[::1]:8332 ; only ipv6 localhost on port 8332 (this is a default)
77+
; rpclisten=127.0.0.1:8332 ; only ipv4 localhost on port 8332
78+
; rpclisten=[::1]:8332 ; only ipv6 localhost on port 8332
7579
; rpclisten=127.0.0.1:8337 ; only ipv4 localhost on non-standard port 8337
7680
; rpclisten=:8337 ; all interfaces on non-standard port 8337
7781
; rpclisten=0.0.0.0:8337 ; all ipv4 interfaces on non-standard port 8337
@@ -116,3 +120,87 @@
116120
; be disabled if this option is not specified. The profile information can be
117121
; accessed at http://localhost:<profileport>/debug/pprof once running.
118122
; profile=6062
123+
124+
; Directory to log output.
125+
; logdir=~/.btcwallet/logs
126+
127+
128+
; ------------------------------------------------------------------------------
129+
; Wallet settings
130+
; ------------------------------------------------------------------------------
131+
132+
; The timeout value to use when opening the wallet database.
133+
; dbtimeout=1m
134+
135+
; The public wallet password -- Only required if the wallet was created with one.
136+
; walletpass=
137+
138+
; Create the wallet if it does not exist.
139+
; create=0
140+
141+
; Create a temporary simulation wallet (pass=password) in the data directory indicated.
142+
; createtemp=0
143+
144+
; Defer wallet creation/opening on startup and enable loading wallets over RPC.
145+
; noinitialload=0
146+
147+
148+
; ------------------------------------------------------------------------------
149+
; Peer-to-peer networking
150+
; ------------------------------------------------------------------------------
151+
152+
; Enables the experimental use of SPV rather than RPC for chain synchronization.
153+
; usespv=0
154+
155+
; Add a peer to connect with at startup.
156+
; addpeer=
157+
158+
; Connect only to the specified peers at startup.
159+
; connect=
160+
161+
; Max number of inbound and outbound peers.
162+
; maxpeers=125
163+
164+
; How long to ban misbehaving peers. Valid time units are {s, m, h}.
165+
; banduration=24h
166+
167+
; Maximum allowed ban score before disconnecting and banning misbehaving peers.
168+
; banthreshold=100
169+
170+
171+
; ------------------------------------------------------------------------------
172+
; Alternative networks
173+
; ------------------------------------------------------------------------------
174+
175+
; Use the signet test network.
176+
; signet=0
177+
178+
; Connect to a custom signet network defined by this challenge instead of using
179+
; the global default signet test network.
180+
; signetchallenge=
181+
182+
; Specify a seed node for the signet network instead of using the global default
183+
; signet network seed nodes.
184+
; signetseednode=
185+
186+
187+
; ------------------------------------------------------------------------------
188+
; Advanced RPC settings
189+
; ------------------------------------------------------------------------------
190+
191+
; Disable TLS for the RPC client -- NOTE: This is only allowed if the RPC client
192+
; is connecting to localhost.
193+
; noclienttls=0
194+
195+
; Disable TLS for the RPC server -- NOTE: This is only allowed if the RPC server
196+
; is bound to localhost.
197+
; noservertls=0
198+
199+
; Max number of legacy RPC clients for standard connections.
200+
; rpcmaxclients=10
201+
202+
; Max number of legacy RPC websocket connections.
203+
; rpcmaxwebsockets=25
204+
205+
; Listen for RPC connections on this interface/port.
206+
; experimentalrpclisten=

0 commit comments

Comments
 (0)