From 30a857b982e16f9e363e7ab5283b7e159b91adb1 Mon Sep 17 00:00:00 2001 From: ErikEk Date: Sat, 30 Apr 2022 12:00:32 +0200 Subject: [PATCH] zmq: remove port check error --- chainreg/chainregistry.go | 4 ++-- docs/release-notes/release-notes-0.15.0.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/chainreg/chainregistry.go b/chainreg/chainregistry.go index 2c3ef1789..a19658d24 100644 --- a/chainreg/chainregistry.go +++ b/chainreg/chainregistry.go @@ -530,7 +530,7 @@ func NewPartialChainControl(cfg *Config) (*PartialChainControl, func(), error) { return nil, nil, err } if url.Port() != zmqPubRawBlockURL.Port() { - return nil, nil, fmt.Errorf( + log.Warnf( "unable to subscribe to zmq block events on "+ "%s (bitcoind is running on %s)", zmqPubRawBlockURL.Host, @@ -545,7 +545,7 @@ func NewPartialChainControl(cfg *Config) (*PartialChainControl, func(), error) { return nil, nil, err } if url.Port() != zmqPubRawTxURL.Port() { - return nil, nil, fmt.Errorf( + log.Warnf( "unable to subscribe to zmq tx events on "+ "%s (bitcoind is running on %s)", zmqPubRawTxURL.Host, diff --git a/docs/release-notes/release-notes-0.15.0.md b/docs/release-notes/release-notes-0.15.0.md index ca56fb58a..e21e49e04 100644 --- a/docs/release-notes/release-notes-0.15.0.md +++ b/docs/release-notes/release-notes-0.15.0.md @@ -14,7 +14,7 @@ invoices](https://lists.linuxfoundation.org/pipermail/lightning-dev/2021-Septemb ## Security * [Misconfigured ZMQ - setup now gets reported](https://github.com/lightningnetwork/lnd/pull/5710). + setup now logs a warning](https://github.com/lightningnetwork/lnd/pull/5710). ## Taproot