From 41379c9c732475cfa431735f9f04486085792bc4 Mon Sep 17 00:00:00 2001 From: Wilmer Paulino Date: Thu, 9 Aug 2018 23:50:36 -0700 Subject: [PATCH] docs: fix lnd w/ bitcoind backend example command --- docs/INSTALL.md | 2 +- sample-lnd.conf | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 1a8e9135..bbe9b61a 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -262,7 +262,7 @@ with `bitcoind` as your backend (as with `bitcoind`, you can create an `lnd.conf` to save these options, more info on that is described further below): ``` -lnd --bitcoin.active --bitcoin.testnet --debuglevel=debug --bitcoin.node=bitcoind --bitcoind.rpcuser=REPLACEME --bitcoind.rpcpass=REPLACEME --bitcoind.zmqpubrawblock=tcp://127.0.0.1:28332 --bitcoind.zmqpubrawblock=tcp://127.0.0.1:28333 --externalip=X.X.X.X +lnd --bitcoin.active --bitcoin.testnet --debuglevel=debug --bitcoin.node=bitcoind --bitcoind.rpcuser=REPLACEME --bitcoind.rpcpass=REPLACEME --bitcoind.zmqpubrawblock=tcp://127.0.0.1:28332 --bitcoind.zmqpubrawtx=tcp://127.0.0.1:28333 --externalip=X.X.X.X ``` *NOTE:* diff --git a/sample-lnd.conf b/sample-lnd.conf index 70a755ca..b26b1658 100644 --- a/sample-lnd.conf +++ b/sample-lnd.conf @@ -208,8 +208,8 @@ bitcoin.node=btcd ; ZMQ socket which sends rawblock and rawtx notifications from bitcoind. By ; default, lnd will attempt to automatically obtain this information, so this ; likely won't need to be set (other than for a remote bitcoind instance). -; bitcoind.zmqblockhost=tcp://127.0.0.1:28332 -; bitcoind.zmqtxhost=tcp://127.0.0.1:28333 +; bitcoind.zmqpubrawblock=tcp://127.0.0.1:28332 +; bitcoind.zmqpubrawtx=tcp://127.0.0.1:28333 [neutrino] @@ -286,8 +286,8 @@ litecoin.node=ltcd ; ZMQ socket which sends rawblock and rawtx notifications from litecoind. By ; default, lnd will attempt to automatically obtain this information, so this ; likely won't need to be set (other than for a remote litecoind instance). -; litecoind.zmqblockhost=tcp://127.0.0.1:28332 -; litecoind.zmqtxhost=tcp://127.0.0.1:28333 +; litecoind.zmqpubrawblock=tcp://127.0.0.1:28332 +; litecoind.zmqpubrawtx=tcp://127.0.0.1:28333 [autopilot]