Skip to content

Commit

Permalink
Merge pull request #185 from niteshbalusu11/fix-types-for-pay
Browse files Browse the repository at this point in the history
fix types for pay commands
  • Loading branch information
alexbosworth authored Sep 6, 2024
2 parents 1e5ebbf + 59be816 commit 141b189
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lnd_methods/offchain/pay_via_payment_request.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ export type PayViaPaymentRequestResult = {
}[];
/** Payment Hash Hex */
id: string;
/** Payment Index String */
index: string;
/** Total Millitokens Paid */
mtokens: string;
paths: {
Expand Down
4 changes: 4 additions & 0 deletions lnd_methods/offchain/subscribe_to_pay.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ export type SubscribeToPayConfirmedEvent = {
}[];
/** Payment Hash Hex String> */
id: string;
/** Payment Index String */
index: string;
/** Total Millitokens Paid String> */
mtokens: string;
paths: {
Expand Down Expand Up @@ -193,6 +195,8 @@ export type SubscribeToPayPayingEvent = {
destination: string;
/** Payment Hash Hex String> */
id: string;
/** Payment Index String */
index: string;
/** Total Millitokens Pending String> */
mtokens: string;
paths: {
Expand Down

0 comments on commit 141b189

Please sign in to comment.