mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-13 11:09:23 +01:00
Merge pull request #6483 from ErikEk/remove-zmq-check
zmq: remove port checker
This commit is contained in:
commit
cd21918c5d
2 changed files with 3 additions and 3 deletions
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue