From de28f0c6cdec06de5daa67fa0929452fb7e286a7 Mon Sep 17 00:00:00 2001 From: Shannon Appelcline Date: Tue, 5 Jan 2021 08:46:04 -1000 Subject: [PATCH] clarification on adding to bitcoin.conf file --- 18_2__Interlude_Accessing_a_Second_Lightning_Node.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/18_2__Interlude_Accessing_a_Second_Lightning_Node.md b/18_2__Interlude_Accessing_a_Second_Lightning_Node.md index e8b6095..d762d4c 100644 --- a/18_2__Interlude_Accessing_a_Second_Lightning_Node.md +++ b/18_2__Interlude_Accessing_a_Second_Lightning_Node.md @@ -121,8 +121,9 @@ $ BITCOINRPC_PASS=$(cat ~standup/.bitcoin/bitcoin.conf | grep rpcpassword | awk Second, you need to enable ZMQ on your Bitcoind, if you didn't already in [ยง15.3](15_3_Receiving_Bitcoind_Notifications_with_C.md). -This requires adding the following to your `~/.bitcoin/bitcoin.conf` file: +This requires adding the following to your `~/.bitcoin/bitcoin.conf` file if it's not already there: ``` +$ cat >> ~/.bitcoin/bitcoin.conf zmqpubrawblock=tcp://127.0.0.1:28332 zmqpubrawtx=tcp://127.0.0.1:28333 ```