|
21 | 21 | ; used in this directory for mainnet and testnet wallets, respectively.
|
22 | 22 | ; appdata=~/.btcwallet
|
23 | 23 |
|
| 24 | +; DEPRECATED -- use appdata instead. |
| 25 | +; datadir= |
| 26 | + |
24 | 27 |
|
25 | 28 | ; ------------------------------------------------------------------------------
|
26 | 29 | ; RPC client settings
|
|
64 | 67 | ; modified by some options such as 'testnet', so it is recommended to not
|
65 | 68 | ; specify a port and allow a proper default to be chosen unless you have a
|
66 | 69 | ; specific reason to do otherwise.
|
67 |
| -; rpclisten= ; all interfaces on default port |
| 70 | +; Default: |
| 71 | +; rpclisten= |
68 | 72 | ; rpclisten=0.0.0.0 ; all ipv4 interfaces on default port
|
69 | 73 | ; rpclisten=:: ; all ipv6 interfaces on default port
|
70 | 74 | ; rpclisten=:8332 ; all interfaces on port 8332
|
71 | 75 | ; rpclisten=0.0.0.0:8332 ; all ipv4 interfaces on port 8332
|
72 | 76 | ; 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 |
75 | 79 | ; rpclisten=127.0.0.1:8337 ; only ipv4 localhost on non-standard port 8337
|
76 | 80 | ; rpclisten=:8337 ; all interfaces on non-standard port 8337
|
77 | 81 | ; rpclisten=0.0.0.0:8337 ; all ipv4 interfaces on non-standard port 8337
|
|
116 | 120 | ; be disabled if this option is not specified. The profile information can be
|
117 | 121 | ; accessed at http://localhost:<profileport>/debug/pprof once running.
|
118 | 122 | ; 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