aboutsummaryrefslogtreecommitdiff
path: root/doc/release-notes-pr12823.md
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2018-08-13 14:32:40 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2018-08-13 14:32:49 +0200
commit4da19de36f539d8c2db78c936b2f22ca304e566b (patch)
tree083b72a701697118f446237dcda61985569b6cc4 /doc/release-notes-pr12823.md
parentbffb35f876572737b175aa3620bbf3e62c20f444 (diff)
parentfad389862725abe4351879e3333e47e9e5bf9e0c (diff)
downloadbitcoin-4da19de36f539d8c2db78c936b2f22ca304e566b.tar.xz
Merge #13950: doc: move-only 0.17.0 release notes of individual prs
fad389862725abe4351879e3333e47e9e5bf9e0c doc: move-only release notes of individual prs (MarcoFalke) Pull request description: Suggestion for reviewers: `git diff HEAD~ --color-moved=dimmed_zebra` Tree-SHA512: 9d8be96d3a578e9df831eda1b5d942798ea4fbe2b1105f4c12a61a13716e62defd5ef8460fcd2411400849c057a8a1b3553ba2f490b70a353a6b46ce5be86acc
Diffstat (limited to 'doc/release-notes-pr12823.md')
-rw-r--r--doc/release-notes-pr12823.md20
1 files changed, 0 insertions, 20 deletions
diff --git a/doc/release-notes-pr12823.md b/doc/release-notes-pr12823.md
deleted file mode 100644
index b493908716..0000000000
--- a/doc/release-notes-pr12823.md
+++ /dev/null
@@ -1,20 +0,0 @@
-Configuration sections for testnet and regtest
-----------------------------------------------
-
-It is now possible for a single configuration file to set different
-options for different networks. This is done by using sections or by
-prefixing the option with the network, such as:
-
- main.uacomment=bitcoin
- test.uacomment=bitcoin-testnet
- regtest.uacomment=regtest
- [main]
- mempoolsize=300
- [test]
- mempoolsize=100
- [regtest]
- mempoolsize=20
-
-The `addnode=`, `connect=`, `port=`, `bind=`, `rpcport=`, `rpcbind=`
-and `wallet=` options will only apply to mainnet when specified in the
-configuration file, unless a network is specified.