Merge pull request #9051 from calvinrzachman/export-routing-interface

routing: export dbMPPayment interface
This commit is contained in:
Oliver Gugger
2024-09-09 05:15:38 -06:00
committed by GitHub
3 changed files with 8 additions and 8 deletions

View File

@@ -113,7 +113,7 @@ const (
// decideNextStep is used to determine the next step in the payment lifecycle.
func (p *paymentLifecycle) decideNextStep(
payment dbMPPayment) (stateStep, error) {
payment DBMPPayment) (stateStep, error) {
// Check whether we could make new HTLC attempts.
allow, err := payment.AllowMoreAttempts()