@@ -17,7 +17,7 @@ var loopOutCommand = cli.Command{
17
17
Usage : "perform an off-chain to on-chain swap (looping out)" ,
18
18
ArgsUsage : "amt [addr]" ,
19
19
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
21
21
wallet, or a targeted address.
22
22
23
23
The amount is to be specified in satoshis.
@@ -26,8 +26,9 @@ var loopOutCommand = cli.Command{
26
26
specified. If not specified, a new wallet address will be generated.` ,
27
27
Flags : []cli.Flag {
28
28
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" ,
31
32
},
32
33
cli.StringFlag {
33
34
Name : "addr" ,
@@ -48,18 +49,19 @@ var loopOutCommand = cli.Command{
48
49
},
49
50
cli.Int64Flag {
50
51
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" ,
53
55
},
54
56
cli.BoolFlag {
55
57
Name : "fast" ,
56
58
Usage : "Indicate you want to swap immediately, " +
57
59
"paying potentially a higher fee. If not " +
58
60
"set the swap server might choose to wait up " +
59
61
"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." ,
63
65
},
64
66
},
65
67
Action : loopOut ,
0 commit comments