Merge pull request #3306 from ottosuess/patch-4

invoicesrpc: fix route hint off-by-one-error
This commit is contained in:
Johan T. Halseth 2019-07-12 12:28:15 +02:00 committed by GitHub
commit f069276970
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -268,7 +268,7 @@ func AddInvoice(ctx context.Context, cfg *AddInvoiceConfig,
for _, channel := range openChannels { for _, channel := range openChannels {
// We'll restrict the number of individual route hints // We'll restrict the number of individual route hints
// to 20 to avoid creating overly large invoices. // to 20 to avoid creating overly large invoices.
if numHints > 20 { if numHints >= 20 {
break break
} }