mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-09-06 17:47:01 +02:00
zmq: remove port check error
This commit is contained in:
@@ -530,7 +530,7 @@ func NewPartialChainControl(cfg *Config) (*PartialChainControl, func(), error) {
|
|||||||
return nil, nil, err
|
return nil, nil, err
|
||||||
}
|
}
|
||||||
if url.Port() != zmqPubRawBlockURL.Port() {
|
if url.Port() != zmqPubRawBlockURL.Port() {
|
||||||
return nil, nil, fmt.Errorf(
|
log.Warnf(
|
||||||
"unable to subscribe to zmq block events on "+
|
"unable to subscribe to zmq block events on "+
|
||||||
"%s (bitcoind is running on %s)",
|
"%s (bitcoind is running on %s)",
|
||||||
zmqPubRawBlockURL.Host,
|
zmqPubRawBlockURL.Host,
|
||||||
@@ -545,7 +545,7 @@ func NewPartialChainControl(cfg *Config) (*PartialChainControl, func(), error) {
|
|||||||
return nil, nil, err
|
return nil, nil, err
|
||||||
}
|
}
|
||||||
if url.Port() != zmqPubRawTxURL.Port() {
|
if url.Port() != zmqPubRawTxURL.Port() {
|
||||||
return nil, nil, fmt.Errorf(
|
log.Warnf(
|
||||||
"unable to subscribe to zmq tx events on "+
|
"unable to subscribe to zmq tx events on "+
|
||||||
"%s (bitcoind is running on %s)",
|
"%s (bitcoind is running on %s)",
|
||||||
zmqPubRawTxURL.Host,
|
zmqPubRawTxURL.Host,
|
||||||
|
@@ -14,7 +14,7 @@ invoices](https://lists.linuxfoundation.org/pipermail/lightning-dev/2021-Septemb
|
|||||||
## Security
|
## Security
|
||||||
|
|
||||||
* [Misconfigured ZMQ
|
* [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
|
## Taproot
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user