lncfg: validate BlindedPaths.MaxNumPaths

Assert that the BlindedPaths.MaxNumPaths value is non-zero.
This commit is contained in:
MPins
2025-04-23 16:31:15 -03:00
parent ec42b9acd0
commit 770d1d93be

View File

@@ -34,6 +34,10 @@ func (r *Routing) Validate() error {
"number of hops expected to be included in each path")
}
if r.BlindedPaths.MaxNumPaths == 0 {
return fmt.Errorf("blinded max num paths cannot be 0")
}
if r.BlindedPaths.PolicyIncreaseMultiplier < 1 {
return fmt.Errorf("the blinded route policy increase " +
"multiplier must be greater than or equal to 1")