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
Copy file name to clipboardExpand all lines: ldk-server-cli/src/main.rs
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -247,12 +247,14 @@ enum Commands {
247
247
)]
248
248
max_channel_saturation_power_of_half:Option<u32>,
249
249
},
250
-
#[command(about = "Underpay a BOLT11 invoice")]
250
+
#[command(
251
+
about = "Send part of a BOLT11 invoice. Other nodes must send partial payments for the same invoice until the combined amount equals the invoice amount"
252
+
)]
251
253
Bolt11SendUnderpaying{
252
254
#[arg(help = "A BOLT11 invoice for a payment within the Lightning Network")]
253
255
invoice:String,
254
256
#[arg(
255
-
help = "Amount to send, e.g. 50sat or 50000msat. Must be less than the invoice amount"
257
+
help = "Amount from this payer, for example 50sat or 50000msat. Must be less than the invoice amount"
0 commit comments