Skip to content

Commit 3ea07f1

Browse files
committed
cmd/loop: clarify some flag descriptions
1 parent 3b63066 commit 3ea07f1

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

cmd/loop/loopout.go

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ var loopOutCommand = cli.Command{
1717
Usage: "perform an off-chain to on-chain swap (looping out)",
1818
ArgsUsage: "amt [addr]",
1919
Description: `
20-
Attempts loop out the target amount into either the backing lnd's
20+
Attempts to loop out the target amount into either the backing lnd's
2121
wallet, or a targeted address.
2222
2323
The amount is to be specified in satoshis.
@@ -26,8 +26,9 @@ var loopOutCommand = cli.Command{
2626
specified. If not specified, a new wallet address will be generated.`,
2727
Flags: []cli.Flag{
2828
cli.Uint64Flag{
29-
Name: "channel",
30-
Usage: "the 8-byte compact channel ID of the channel to loop out",
29+
Name: "channel",
30+
Usage: "the 8-byte compact channel ID of the channel " +
31+
"to loop out",
3132
},
3233
cli.StringFlag{
3334
Name: "addr",
@@ -48,18 +49,19 @@ var loopOutCommand = cli.Command{
4849
},
4950
cli.Int64Flag{
5051
Name: "max_swap_routing_fee",
51-
Usage: "the max off-chain swap routing fee in satoshis, " +
52-
"if let blank a default max fee will be used",
52+
Usage: "the max off-chain swap routing fee in " +
53+
"satoshis, if not specified, a default max " +
54+
"fee will be used",
5355
},
5456
cli.BoolFlag{
5557
Name: "fast",
5658
Usage: "Indicate you want to swap immediately, " +
5759
"paying potentially a higher fee. If not " +
5860
"set the swap server might choose to wait up " +
5961
"to 30 minutes before publishing the swap " +
60-
"HTLC on-chain, to save on chain fees. Not " +
61-
"setting this flag might result in a lower " +
62-
"swap fee.",
62+
"HTLC on-chain, to save on its chain fees. " +
63+
"Not setting this flag therefore might " +
64+
"result in a lower swap fee.",
6365
},
6466
},
6567
Action: loopOut,

0 commit comments

Comments
 (0)