Skip to content

Commit e797388

Browse files
author
MarcoFalke
committed
Merge #21384: doc: add signet to bitcoin.conf documentation
4a28510 doc: add signet to doc/bitcoin-conf.md (Jon Atack) 21b6a23 doc: add signet to share/examples/bitcoin.conf (Jon Atack) Pull request description: ACKs for top commit: jarolrod: ACK 4a28510 🥃 kristapsk: ACK 4a28510 Tree-SHA512: 2c2aa58ce5316cf986a1f3b7638b42d3939a482c38becb346d6aeab2887e57adf5c0e961de33f7721c89936881769e76b46504445428737ee810d21f4d9fb1a4
2 parents 1a4a930 + 4a28510 commit e797388

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

doc/bitcoin-conf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Comments may appear in two ways:
2727
### Network specific options
2828

2929
Network specific options can be:
30-
- placed into sections with headers `[main]` (not `[mainnet]`), `[test]` (not `[testnet]`) or `[regtest]`;
30+
- placed into sections with headers `[main]` (not `[mainnet]`), `[test]` (not `[testnet]`), `[signet]` or `[regtest]`;
3131
- prefixed with a chain name; e.g., `regtest.maxmempool=100`.
3232

3333
Network specific options take precedence over non-network specific options.

share/examples/bitcoin.conf

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,16 @@
44

55
# Network-related settings:
66

7-
# Note that if you use testnet or regtest, particularly with the options
7+
# Note that if you use testnet, signet or regtest, particularly with the options
88
# addnode, connect, port, bind, rpcport, rpcbind or wallet, you will also
99
# want to read "[Sections]" further down.
1010

11-
# Run on the test network instead of the real bitcoin network.
11+
# Run on the testnet network
1212
#testnet=0
1313

14+
# Run on a signet network
15+
#signet=0
16+
1417
# Run a regression test network
1518
#regtest=0
1619

@@ -57,7 +60,7 @@
5760
# Listening mode, enabled by default except when 'connect' is being used
5861
#listen=1
5962

60-
# Port on which to listen for connections (default: 8333, testnet: 18333, regtest: 18444)
63+
# Port on which to listen for connections (default: 8333, testnet: 18333, signet: 38333, regtest: 18444)
6164
#port=
6265

6366
# Maximum number of inbound+outbound connections.
@@ -155,7 +158,7 @@
155158
#minimizetotray=1
156159

157160
# [Sections]
158-
# Most options apply to mainnet, testnet and regtest.
161+
# Most options apply to mainnet, testnet, signet and regtest.
159162
# If you want to confine an option to just one network, you should add it in the
160163
# relevant section below.
161164
# EXCEPTIONS: The options addnode, connect, port, bind, rpcport, rpcbind and wallet
@@ -167,5 +170,8 @@
167170
# Options only for testnet
168171
[test]
169172

173+
# Options only for signet
174+
[signet]
175+
170176
# Options only for regtest
171177
[regtest]

0 commit comments

Comments
 (0)