diff options
author | Jon Atack <jon@atack.com> | 2021-03-08 00:22:57 +0100 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2021-03-08 00:22:57 +0100 |
commit | 21b6a233734da1601846a16a741b108522901782 (patch) | |
tree | 29b3ec36550a39e298c891a58e6a3b7844713d75 /share/examples | |
parent | 1a4a9305c2d25eafa5ad5365b4daa2bd15fc6e05 (diff) |
doc: add signet to share/examples/bitcoin.conf
Diffstat (limited to 'share/examples')
-rw-r--r-- | share/examples/bitcoin.conf | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/share/examples/bitcoin.conf b/share/examples/bitcoin.conf index 90a592cc63..5b7fc776a4 100644 --- a/share/examples/bitcoin.conf +++ b/share/examples/bitcoin.conf @@ -4,13 +4,16 @@ # Network-related settings: -# Note that if you use testnet or regtest, particularly with the options +# Note that if you use testnet, signet or regtest, particularly with the options # addnode, connect, port, bind, rpcport, rpcbind or wallet, you will also # want to read "[Sections]" further down. -# Run on the test network instead of the real bitcoin network. +# Run on the testnet network #testnet=0 +# Run on a signet network +#signet=0 + # Run a regression test network #regtest=0 @@ -57,7 +60,7 @@ # Listening mode, enabled by default except when 'connect' is being used #listen=1 -# Port on which to listen for connections (default: 8333, testnet: 18333, regtest: 18444) +# Port on which to listen for connections (default: 8333, testnet: 18333, signet: 38333, regtest: 18444) #port= # Maximum number of inbound+outbound connections. @@ -155,7 +158,7 @@ #minimizetotray=1 # [Sections] -# Most options apply to mainnet, testnet and regtest. +# Most options apply to mainnet, testnet, signet and regtest. # If you want to confine an option to just one network, you should add it in the # relevant section below. # EXCEPTIONS: The options addnode, connect, port, bind, rpcport, rpcbind and wallet @@ -167,5 +170,8 @@ # Options only for testnet [test] +# Options only for signet +[signet] + # Options only for regtest [regtest] |