Skip to content

Commit

Permalink
tapcli: fix spacing in misc help cmds
Browse files Browse the repository at this point in the history
  • Loading branch information
jharveyb committed Nov 28, 2023
1 parent 2869883 commit 58b3a3f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions cmd/tapcli/assets.go
Original file line number Diff line number Diff line change
Expand Up @@ -261,8 +261,8 @@ var finalizeBatchCommand = cli.Command{
},
cli.Uint64Flag{
Name: feeRateName,
Usage: "if set, the fee rate in sat/kw to use for the" +
"minting transaction",
Usage: "if set, the fee rate in sat/kw to use for " +
"the minting transaction",
},
},
Action: finalizeBatch,
Expand Down Expand Up @@ -531,8 +531,8 @@ var sendAssetsCommand = cli.Command{
},
cli.Uint64Flag{
Name: feeRateName,
Usage: "if set, the fee rate in sat/kw to use for the" +
"anchor transaction",
Usage: "if set, the fee rate in sat/kw to use for " +
"the anchor transaction",
},
// TODO(roasbeef): add arg for file name to write sender proof
// blob
Expand Down
10 changes: 5 additions & 5 deletions cmd/tapcli/universe.go
Original file line number Diff line number Diff line change
Expand Up @@ -783,13 +783,13 @@ var (
},
cli.StringFlag{
Name: proofInsertName,
Usage: "if true, remote Universes can push proofs to" +
Usage: "if true, remote Universes can push proofs to " +
"the local Universe",
},
cli.StringFlag{
Name: proofExportName,
Usage: "if true, remote Universes can pull proofs from" +
"the local Universe",
Usage: "if true, remote Universes can pull proofs " +
"from the local Universe",
},
}
)
Expand Down Expand Up @@ -1166,8 +1166,8 @@ func universeFederationGetConfigInfo(ctx *cli.Context) error {
}

if scope == "global" {
return fmt.Errorf("cannot specify global scope and a specific" +
"asset")
return fmt.Errorf("cannot specify global scope and a " +
"specific asset")
}

return printLocalConfig()
Expand Down

0 comments on commit 58b3a3f

Please sign in to comment.