From a24dc0aa1f85dbada632a2c8c1019093f457d928 Mon Sep 17 00:00:00 2001 From: LORDBABUINO Date: Mon, 11 May 2026 20:21:43 -0300 Subject: [PATCH] docs: point readme bitcoin.conf section to bitcoin.conf.example Replace the inline cat heredoc with a single cp instruction so the example config stays canonical (the file is already in the repo and also drives ./scripts/setup.sh). --- README.md | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index c3f258e..42dd850 100644 --- a/README.md +++ b/README.md @@ -168,23 +168,10 @@ cargo build ### 2. Configure Bitcoin Core RPC (regtest) -Create a local `bitcoin.conf`: +Copy `bitcoin.conf.example` to `bitcoin.conf` and edit the credentials if needed. ```bash -cat > bitcoin.conf <<'EOF' -regtest=1 -server=1 -daemon=1 -txindex=1 -listen=0 -[regtest] -rpcbind=127.0.0.1 -rpcallowip=127.0.0.1 -rpcuser=localuser -rpcpassword=localpass -rpcport=18443 -fallbackfee=0.0002 -EOF +cp bitcoin.conf.example bitcoin.conf ``` ### 3. Start Bitcoin Core