routing+routerrpc: rename max_shards to max_parts

Don't introduce a new term and align with the P in MPP.
This commit is contained in:
Joost Jager
2020-04-22 09:19:11 +02:00
parent 8d7e07d96b
commit f6b2410011
11 changed files with 169 additions and 169 deletions

View File

@@ -263,11 +263,11 @@ func (p *paymentSession) RequestRoute(maxAmt, feeLimit lnwire.MilliSatoshi,
}
// No splitting if this is the last shard.
isLastShard := activeShards+1 >= p.payment.MaxShards
isLastShard := activeShards+1 >= p.payment.MaxParts
if isLastShard {
p.log.Debugf("not splitting because shard "+
"limit %v has been reached",
p.payment.MaxShards)
p.payment.MaxParts)
return nil, errNoPathFound
}