@@ -40,19 +40,17 @@ var createAccountCommand = cli.Command{
4040 ShortName : "c" ,
4141 Usage : "Create a new off-chain account with a balance." ,
4242 ArgsUsage : "balance [expiration_date] [--label=LABEL] [--save_to=FILE]" ,
43- Description : "Adds an entry to the account database. " +
44- "This entry represents an amount of satoshis (account " +
45- "balance) that can be spent using off-chain transactions " +
46- "(e.g. paying invoices).\n \n " +
47-
48- " Macaroons can be created to be locked to an account. " +
49- "This makes sure that the bearer of the macaroon can only " +
50- "spend at most that amount of satoshis through the daemon " +
51- "that has issued the macaroon.\n \n " +
52-
53- " Accounts only assert a maximum amount spendable. Having " +
54- "a certain account balance does not guarantee that the node " +
55- "has the channel liquidity to actually spend that amount." ,
43+ Description : `Adds an entry to the account database.
44+ This entry represents an amount of satoshis (account balance) that can be spent
45+ using off-chain transactions (e.g. paying invoices).
46+
47+ Macaroons can be created to be locked to an account. This makes sure that the
48+ bearer of the macaroon can only spend at most that amount of satoshis through
49+ the daemon that has issued the macaroon.
50+
51+ Accounts only assert a maximum amount spendable. Having a certain account
52+ balance does not guarantee that the node has the channel liquidity to actually
53+ spend that amount.` ,
5654 Flags : []cli.Flag {
5755 cli.Uint64Flag {
5856 Name : "balance" ,
@@ -315,10 +313,10 @@ func accountInfo(ctx *cli.Context) error {
315313}
316314
317315var removeAccountCommand = cli.Command {
318- Name : "remove" ,
319- ShortName : "r" ,
320- Usage : "Remove an off-chain account from the database." ,
321- ArgsUsage : "[id | label]" ,
316+ Name : "remove" ,
317+ ShortName : "r" ,
318+ Usage : "Remove an off-chain account from the database." ,
319+ ArgsUsage : "[id | label]" ,
322320 Description : "Removes an account entry from the account database." ,
323321 Flags : []cli.Flag {
324322 cli.StringFlag {
0 commit comments