You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Read payment history directly from LDK Node and stop duplicating
payment records in the server database. Retain the server store for
forwarded-payment history.
Replace structured page tokens with opaque strings across both listing
APIs and adapt CLI pagination to pass them through. Existing clients
must update for the token schema change.
AI assistance: OpenAI Codex was used for this change.
#[arg(help = "Page token to continue from a previous page (format: token:index)")]
543
+
#[arg(help = "Opaque page token returned by a previous request")]
544
544
page_token:Option<String>,
545
545
},
546
546
#[command(about = "Get details of a specific payment by its payment ID")]
@@ -556,7 +556,7 @@ enum Commands {
556
556
help = "Fetch at least this many forwarded payments by iterating through multiple pages. Returns combined results with the last page token. If not provided, returns only a single page."
557
557
)]
558
558
number_of_payments:Option<u64>,
559
-
#[arg(long, help = "Page token to continue from a previous page (format: token:index)")]
559
+
#[arg(long, help = "Opaque page token returned by a previous request")]
560
560
page_token:Option<String>,
561
561
},
562
562
#[command(about = "Update the forwarding fees and CLTV expiry delta for an existing channel")]
0 commit comments