diff options
| author | MarcoFalke <[email protected]> | 2018-11-08 12:56:36 -0500 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-11-08 12:56:40 -0500 |
| commit | e70a19e7132dac91b7948fcbfac086f86fec3d88 (patch) | |
| tree | 46606943a1db42bad633c7b2b4f39244a97e1666 /doc | |
| parent | Merge #14686: build: Fix windows build error if `--disable-bip70` (diff) | |
| parent | [doc] conf: Remove deprecated options from docs, Other cleanup (diff) | |
| download | discoin-e70a19e7132dac91b7948fcbfac086f86fec3d88.tar.xz discoin-e70a19e7132dac91b7948fcbfac086f86fec3d88.zip | |
Merge #14684: [doc] conf: Remove deprecated options from docs, Other cleanup
fa4da3c058 [doc] conf: Remove deprecated options from docs, Other cleanup (MarcoFalke)
Pull request description:
Some dumb fixes, like removing the mention that free transactions are still a thing or that rpcuser/pass should be used (as opposed to rpcauth or rpc cookie).
Combined with other fixes because I don't want to create 3 pull requests:
* conf: Remove deprecated options from docs
* Remove only mention of MIT/X11
* Link to developer notes in README.md
Tree-SHA512: 9e45dc6c63037e7618cf3c871d7d9e65b66f1a952f91a6e623d97d90171e29bc40299a06029c4dc21a0f579e68021e3663186bd3a65e3ab333aff711f7dcb2bf
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/build-osx.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/build-osx.md b/doc/build-osx.md index 7be21f792..c9a59bab8 100644 --- a/doc/build-osx.md +++ b/doc/build-osx.md @@ -80,9 +80,9 @@ Running Bitcoin Core is now available at `./src/bitcoind` -Before running, it's recommended that you create an RPC configuration file: +Before running, you may create an empty configuration file: - echo -e "rpcuser=bitcoinrpc\nrpcpassword=$(xxd -l 16 -p /dev/urandom)" > "/Users/${USER}/Library/Application Support/Bitcoin/bitcoin.conf" + touch "/Users/${USER}/Library/Application Support/Bitcoin/bitcoin.conf" chmod 600 "/Users/${USER}/Library/Application Support/Bitcoin/bitcoin.conf" |