Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 8 additions & 12 deletions chainreg/chainregistry.go
Original file line number Diff line number Diff line change
Expand Up @@ -477,12 +477,10 @@ func NewPartialChainControl(cfg *Config) (*PartialChainControl, func(), error) {
return nil, nil, err
}
if url.Port() != zmqPubRawBlockURL.Port() {
log.Warnf(
"unable to subscribe to zmq block events on "+
"%s (bitcoind is running on %s)",
zmqPubRawBlockURL.Host,
url.Host,
)
log.Warnf("zmq block event port mismatch: "+
"lnd configured for %s, bitcoind reports %s -- "+
"ensure ports match or are forwarded correctly",
zmqPubRawBlockURL.Host, url.Host)
}
pubRawBlockActive = true
}
Expand All @@ -492,12 +490,10 @@ func NewPartialChainControl(cfg *Config) (*PartialChainControl, func(), error) {
return nil, nil, err
}
if url.Port() != zmqPubRawTxURL.Port() {
log.Warnf(
"unable to subscribe to zmq tx events on "+
"%s (bitcoind is running on %s)",
zmqPubRawTxURL.Host,
url.Host,
)
log.Warnf("zmq tx event port mismatch: "+
"lnd configured for %s, bitcoind reports %s -- "+
"ensure ports match or are forwarded correctly",
zmqPubRawTxURL.Host, url.Host)
}
pubRawTxActive = true
}
Expand Down
Loading