Skip to content

Commit

Permalink
fix test by adding LookupInvoice to MockLND
Browse files Browse the repository at this point in the history
  • Loading branch information
frnandu committed Dec 27, 2023
1 parent 2fc0a6e commit 77a1f35
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -324,3 +324,7 @@ func (mlnd *MockLND) ListPayments(ctx context.Context, req *lnrpc.ListPaymentsRe
Payments: mlnd.ListPaymentsResponse,
}, nil
}

func (mlnd *MockLND) LookupInvoice(ctx context.Context, req *lnrpc.PaymentHash, options ...grpc.CallOption) (*lnrpc.Invoice, error) {
panic("not implemented") // TODO: Implement
}

0 comments on commit 77a1f35

Please sign in to comment.