Skip to content

Commit 1a7c3e7

Browse files
grunchclaude
andcommitted
docs(add-bond-invoice): use short flags in the reply hint
The inbound bond-payout hint printed the long flag `--orderid` (correct, since the Commands enum's `rename_all = "lower"` renames `order_id` to `--orderid`), but the unusual form is easy to misread. Switch the hint to the short `-o`/`-i` flags, which are unambiguous and match the README's convention for these commands. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 5c04712 commit 1a7c3e7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/parser/dms.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ fn handle_add_bond_invoice_request_display(
145145
println!("💡 A bond on this trade was slashed; you can claim your share.");
146146
println!("💡 Reply before the deadline with a Lightning invoice for the amount above:");
147147
println!(
148-
" mostro-cli addbondinvoice --orderid {} --invoice <bolt11>",
148+
" mostro-cli addbondinvoice -o {} -i <bolt11>",
149149
req.order
150150
.id
151151
.map(|x| x.to_string())

0 commit comments

Comments
 (0)