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
Expose page tokens as one opaque string across the gRPC, CLI, and MCP
interfaces. This keeps storage-specific token fields out of the public
API.
Keep the forwarded-payment cursor encoding inside the server and reject
malformed cursors as invalid requests.
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