From c853964937a46520f83d41952f6b275cc1e6d535 Mon Sep 17 00:00:00 2001 From: Shannon Appelcline Date: Wed, 1 Aug 2018 14:53:07 -0700 Subject: [PATCH] Adjust bitcoin.conf Added walletbroadcast=1 per @leobauza and @madztheo ; thanks! --- 02_1_Setting_Up_a_Bitcoin-Core_VPS_by_Hand.md | 1 + 1 file changed, 1 insertion(+) diff --git a/02_1_Setting_Up_a_Bitcoin-Core_VPS_by_Hand.md b/02_1_Setting_Up_a_Bitcoin-Core_VPS_by_Hand.md index 4e92966..0a92c65 100644 --- a/02_1_Setting_Up_a_Bitcoin-Core_VPS_by_Hand.md +++ b/02_1_Setting_Up_a_Bitcoin-Core_VPS_by_Hand.md @@ -359,6 +359,7 @@ rpcpassword=$(xxd -l 16 -p /dev/urandom) rpcallowip=127.0.0.1 testnet=1 txindex=1 +walletbroadcast=1 EOF ``` > **TESTNET vs MAINNET:** If you want to use mainnet instead of testnet, just omit the "testnet=1" line; easy!