We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b1cdd4 commit a57e34cCopy full SHA for a57e34c
lndclient/lightning_client.go
@@ -39,6 +39,9 @@ type LightningClient interface {
39
AddInvoice(ctx context.Context, in *invoicesrpc.AddInvoiceData) (
40
lntypes.Hash, string, error)
41
42
+ // LookupInvoice looks up an invoice by hash.
43
+ LookupInvoice(ctx context.Context, hash lntypes.Hash) (*Invoice, error)
44
+
45
// ListTransactions returns all known transactions of the backing lnd
46
// node.
47
ListTransactions(ctx context.Context) ([]*wire.MsgTx, error)
0 commit comments