Skip to content

Commit a62e981

Browse files
authored
Merge pull request #603 from hieblmi/fix-typos
fix typos
2 parents 4fc175f + ae76aee commit a62e981

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

cmd/loop/liquidity.go

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,8 @@ var setParamsCommand = cli.Command{
227227
Usage: "update the parameters set for the liquidity manager",
228228
Description: "Updates the parameters set for the liquidity manager. " +
229229
"Note the parameters are persisted in db to save the trouble " +
230-
"of setting them again upon loopd restart. To get the " +
231-
"default values, use `getparams` before any `setparams`.",
230+
"of setting them again upon loopd restart. To get the default" +
231+
"values, use `getparams` before any `setparams`.",
232232
Flags: []cli.Flag{
233233
cli.IntFlag{
234234
Name: "sweeplimit",
@@ -248,13 +248,13 @@ var setParamsCommand = cli.Command{
248248
cli.Float64Flag{
249249
Name: "maxroutingfee",
250250
Usage: "the maximum percentage of off-chain payment " +
251-
"volume that are are willing to pay in " +
252-
"routing fees.",
251+
"volume that we are willing to pay in routing" +
252+
"fees.",
253253
},
254254
cli.Float64Flag{
255255
Name: "maxprepayfee",
256256
Usage: "the maximum percentage of off-chain prepay " +
257-
"volume that are are willing to pay in " +
257+
"volume that we are willing to pay in " +
258258
"routing fees.",
259259
},
260260
cli.Uint64Flag{
@@ -284,56 +284,56 @@ var setParamsCommand = cli.Command{
284284
Name: "autoloop",
285285
Usage: "set to true to enable automated dispatch " +
286286
"of swaps, limited to the budget set by " +
287-
"autobudget",
287+
"autobudget.",
288288
},
289289
cli.StringFlag{
290290
Name: "destaddr",
291291
Usage: "custom address to be used as destination for " +
292292
"autoloop loop out, set to \"default\" in " +
293-
"order to revert to default behavior",
293+
"order to revert to default behavior.",
294294
},
295295
cli.Uint64Flag{
296296
Name: "autobudget",
297297
Usage: "the maximum amount of fees in satoshis that " +
298298
"automatically dispatched loop out swaps may " +
299-
"spend",
299+
"spend.",
300300
},
301301
cli.DurationFlag{
302302
Name: "autobudgetrefreshperiod",
303303
Usage: "the time period over which the automated " +
304-
"loop budget is refreshed",
304+
"loop budget is refreshed.",
305305
},
306306
cli.Uint64Flag{
307307
Name: "autoinflight",
308308
Usage: "the maximum number of automatically " +
309309
"dispatched swaps that we allow to be in " +
310-
"flight",
310+
"flight.",
311311
},
312312
cli.Uint64Flag{
313313
Name: "minamt",
314314
Usage: "the minimum amount in satoshis that the " +
315-
"autoloop client will dispatch per-swap",
315+
"autoloop client will dispatch per-swap.",
316316
},
317317
cli.Uint64Flag{
318318
Name: "maxamt",
319319
Usage: "the maximum amount in satoshis that the " +
320-
"autoloop client will dispatch per-swap",
320+
"autoloop client will dispatch per-swap.",
321321
},
322322
cli.IntFlag{
323323
Name: "htlc_conf",
324324
Usage: "the confirmation target for loop in on-chain " +
325-
"htlcs",
325+
"htlcs.",
326326
},
327327
cli.BoolFlag{
328328
Name: "easyautoloop",
329329
Usage: "set to true to enable easy autoloop, which " +
330330
"will automatically dispatch swaps in order " +
331-
"to meet the target local balance",
331+
"to meet the target local balance.",
332332
},
333333
cli.Uint64Flag{
334334
Name: "localbalancesat",
335335
Usage: "the target size of total local balance in " +
336-
"satoshis, used by easy autoloop",
336+
"satoshis, used by easy autoloop.",
337337
},
338338
},
339339
Action: setParams,

0 commit comments

Comments
 (0)