Skip to content

Commit fa4da3c

Browse files
author
MarcoFalke
committed
[doc] conf: Remove deprecated options from docs, Other cleanup
* conf: Remove deprecated options from docs * Remove only mention of MIT/X11 * Link to developer notes in README.md
1 parent e8d490f commit fa4da3c

File tree

4 files changed

+12
-14
lines changed

4 files changed

+12
-14
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ The `master` branch is regularly built and tested, but is not guaranteed to be
3131
completely stable. [Tags](https://github.com/bitcoin/bitcoin/tags) are created
3232
regularly to indicate new official, stable release versions of Bitcoin Core.
3333

34-
The contribution workflow is described in [CONTRIBUTING.md](CONTRIBUTING.md).
34+
The contribution workflow is described in [CONTRIBUTING.md](CONTRIBUTING.md)
35+
and useful hints for developers can be found in [doc/developer-notes.md](doc/developer-notes.md).
3536

3637
Testing
3738
-------

doc/build-osx.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ Running
8080

8181
Bitcoin Core is now available at `./src/bitcoind`
8282

83-
Before running, it's recommended that you create an RPC configuration file:
83+
Before running, you may create an empty configuration file:
8484

85-
echo -e "rpcuser=bitcoinrpc\nrpcpassword=$(xxd -l 16 -p /dev/urandom)" > "/Users/${USER}/Library/Application Support/Bitcoin/bitcoin.conf"
85+
touch "/Users/${USER}/Library/Application Support/Bitcoin/bitcoin.conf"
8686

8787
chmod 600 "/Users/${USER}/Library/Application Support/Bitcoin/bitcoin.conf"
8888

share/examples/bitcoin.conf

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,9 @@
7171
# is .cookie and found in the `-datadir` being used for bitcoind. This option is typically used
7272
# when the server and client are run as the same user.
7373
#
74-
# If not, you must set rpcuser and rpcpassword to secure the JSON-RPC api. The first
75-
# method(DEPRECATED) is to set this pair for the server and client:
76-
#rpcuser=Ulysseys
77-
#rpcpassword=YourSuperGreatPasswordNumber_DO_NOT_USE_THIS_OR_YOU_WILL_GET_ROBBED_385593
74+
# If not, you must set rpcuser and rpcpassword to secure the JSON-RPC API.
7875
#
79-
# The second method `rpcauth` can be added to server startup argument. It is set at initialization time
76+
# The config option `rpcauth` can be added to server startup argument. It is set at initialization time
8077
# using the output from the script in share/rpcauth/rpcauth.py after providing a username:
8178
#
8279
# ./share/rpcauth/rpcauth.py alice
@@ -116,21 +113,21 @@
116113
# running on another host using this option:
117114
#rpcconnect=127.0.0.1
118115

116+
# Wallet options
117+
119118
# Create transactions that have enough fees so they are likely to begin confirmation within n blocks (default: 6).
120119
# This setting is over-ridden by the -paytxfee option.
121120
#txconfirmtarget=n
122121

122+
# Pay a transaction fee every time you send bitcoins.
123+
#paytxfee=0.000x
124+
123125
# Miscellaneous options
124126

125127
# Pre-generate this many public/private key pairs, so wallet backups will be valid for
126128
# both prior transactions and several dozen future transactions.
127129
#keypool=100
128130

129-
# Pay an optional transaction fee every time you send bitcoins. Transactions with fees
130-
# are more likely than free transactions to be included in generated blocks, so may
131-
# be validated sooner.
132-
#paytxfee=0.00
133-
134131
# Enable pruning to reduce storage requirements by deleting old blocks.
135132
# This mode is incompatible with -txindex and -rescan.
136133
# 0 = default (no pruning).

src/test/pow_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Copyright (c) 2015-2018 The Bitcoin Core developers
2-
// Distributed under the MIT/X11 software license, see the accompanying
2+
// Distributed under the MIT software license, see the accompanying
33
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
44

55
#include <chain.h>

0 commit comments

Comments
 (0)