discovery: add AssumeChannelValid config option

in preparation for later on when we need to know when to skip funding
transaction validation.
This commit is contained in:
Elle Mouton 2025-01-30 13:49:04 +02:00
parent 00f5fd9b7f
commit 22e391f055
No known key found for this signature in database
GPG Key ID: D7D916376026F177
2 changed files with 6 additions and 0 deletions

View File

@ -364,6 +364,11 @@ type Config struct {
// updates for a channel and returns true if the channel should be
// considered a zombie based on these timestamps.
IsStillZombieChannel func(time.Time, time.Time) bool
// AssumeChannelValid toggles whether the gossiper will check for
// spent-ness of channel outpoints. For neutrino, this saves long
// rescans from blocking initial usage of the daemon.
AssumeChannelValid bool
}
// processedNetworkMsg is a wrapper around networkMsg and a boolean. It is

View File

@ -1142,6 +1142,7 @@ func newServer(cfg *Config, listenAddrs []net.Addr,
FindChannel: s.findChannel,
IsStillZombieChannel: s.graphBuilder.IsZombieChannel,
ScidCloser: scidCloserMan,
AssumeChannelValid: cfg.Routing.AssumeChannelValid,
}, nodeKeyDesc)
selfVertex := route.Vertex(nodeKeyDesc.PubKey.SerializeCompressed())