2013-10-14 21:32:15 +02:00
|
|
|
[Application Options]
|
|
|
|
|
2013-10-04 15:01:04 +02:00
|
|
|
; ------------------------------------------------------------------------------
|
2014-01-15 01:20:08 +01:00
|
|
|
; Bitcoin wallet settings
|
2013-10-04 15:01:04 +02:00
|
|
|
; ------------------------------------------------------------------------------
|
|
|
|
|
2014-01-15 01:20:08 +01:00
|
|
|
; Use mainnet.
|
|
|
|
; mainnet=0
|
|
|
|
|
|
|
|
; The directory to open and save wallet, transaction, and unspent transaction
|
|
|
|
; output files. Two directories, `mainnet` and `testnet` are used in this
|
|
|
|
; directory for mainnet and testnet wallets, respectively.
|
|
|
|
; datadir=~/.btcwallet
|
|
|
|
|
2014-01-15 23:29:01 +01:00
|
|
|
; Maximum number of addresses to generate for the keypool
|
|
|
|
; keypoolsize=100
|
|
|
|
|
2014-01-28 18:55:42 +01:00
|
|
|
; Whether transactions must be created with some minimum fee, even if the
|
|
|
|
; calculated transaction priority is high enough to allow a free tx
|
|
|
|
; disallowfree = false
|
2014-01-15 01:20:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------------
|
|
|
|
; RPC client settings
|
|
|
|
; ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
; Connect via a SOCKS5 proxy. NOTE: Specifying a proxy will disable listening
|
2014-05-06 19:50:39 +02:00
|
|
|
; for incoming connections unless listen addresses are provided via the
|
|
|
|
; 'rpclisten' option.
|
2014-01-15 01:20:08 +01:00
|
|
|
; proxy=127.0.0.1:9050
|
|
|
|
; proxyuser=
|
|
|
|
; proxypass=
|
|
|
|
|
2013-11-19 18:21:54 +01:00
|
|
|
; The server and port used for btcd websocket connections.
|
|
|
|
; connect=localhost:18334
|
2013-10-04 15:01:04 +02:00
|
|
|
|
2014-01-15 01:20:08 +01:00
|
|
|
; File containing root certificates to authenticate a TLS connections with btcd
|
|
|
|
; cafile=~/.btcwallet/btcd.cert
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------------
|
|
|
|
; RPC server settings
|
|
|
|
; ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
; TLS certificate and key file locations
|
|
|
|
; rpccert=~/.btcwallet/rpc.cert
|
|
|
|
; rpckey=~/.btcwallet/rpc.key
|
|
|
|
|
2014-05-06 19:50:39 +02:00
|
|
|
; Specify the interfaces for the RPC server listen on. One rpclisten address
|
|
|
|
; per line. Multiple rpclisten options may be set in the same configuration,
|
|
|
|
; and each will be used to listen for connections. NOTE: The default port is
|
|
|
|
; modified by some options such as 'mainnet', so it is recommended to not
|
|
|
|
; specify a port and allow a proper default to be chosen unless you have a
|
|
|
|
; specific reason to do otherwise.
|
|
|
|
; rpclisten= ; all interfaces on default port
|
|
|
|
; rpclisten=0.0.0.0 ; all ipv4 interfaces on default port
|
|
|
|
; rpclisten=:: ; all ipv6 interfaces on default port
|
|
|
|
; rpclisten=:18332 ; all interfaces on port 18332
|
|
|
|
; rpclisten=0.0.0.0:18332 ; all ipv4 interfaces on port 18332
|
|
|
|
; rpclisten=[::]:18332 ; all ipv6 interfaces on port 18332
|
|
|
|
; rpclisten=127.0.0.1:18332 ; only ipv4 localhost on port 18332 (this is a default)
|
|
|
|
; rpclisten=[::1]:18332 ; only ipv6 localhost on port 18332 (this is a default)
|
|
|
|
; rpclisten=127.0.0.1:18337 ; only ipv4 localhost on non-standard port 18337
|
|
|
|
; rpclisten=:18337 ; all interfaces on non-standard port 18337
|
|
|
|
; rpclisten=0.0.0.0:18337 ; all ipv4 interfaces on non-standard port 18337
|
|
|
|
; rpclisten=[::]:18337 ; all ipv6 interfaces on non-standard port 18337
|
2014-01-15 01:20:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------------
|
|
|
|
; RPC settings (both client and server)
|
|
|
|
; ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
; Username and password to authenticate to btcd a RPC server and authenticate
|
|
|
|
; new client connections
|
2013-10-04 15:01:04 +02:00
|
|
|
; username=
|
|
|
|
; password=
|
|
|
|
|
2014-01-15 01:20:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------------
|
|
|
|
; Debug
|
|
|
|
; ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
; Debug logging level.
|
|
|
|
; Valid options are {trace, debug, info, warn, error, critical}
|
|
|
|
; debuglevel=info
|
|
|
|
|
|
|
|
; The port used to listen for HTTP profile requests. The profile server will
|
|
|
|
; be disabled if this option is not specified. The profile information can be
|
|
|
|
; accessed at http://localhost:<profileport>/debug/pprof once running.
|
|
|
|
; profile=6062
|