discovery: fix mocked peer in unit tests

The mocked peer used here blocks on `sendToPeer`, which is not the
behavior of the `SendMessageLazy` of `lnpeer.Peer`. To reflect the
reality, we now make sure the `sendToPeer` is non-blocking in the tests.
This commit is contained in:
yyforyongyu
2025-01-17 17:56:22 +08:00
parent 9fecfed3b5
commit 772a9d5f42
2 changed files with 6 additions and 2 deletions

View File

@@ -495,6 +495,8 @@ func (g *GossipSyncer) handleSyncingChans() {
g.Lock()
defer g.Unlock()
// Send the msg to the remote peer, which is non-blocking as
// `sendToPeer` only queues the msg in Brontide.
err = g.cfg.sendToPeer(queryRangeMsg)
if err != nil {
log.Errorf("Unable to send chan range query: %v", err)