Skip to content

Commit

Permalink
correct flag usages for replace cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
zlhwdsz committed Dec 26, 2020
1 parent bb5a92e commit baae98d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cli/mpool.go
Original file line number Diff line number Diff line change
Expand Up @@ -362,23 +362,23 @@ var mpoolReplaceCmd = &cli.Command{
Flags: []cli.Flag{
&cli.StringFlag{
Name: "gas-feecap",
Usage: "gas feecap for new message",
Usage: "maximum base fee to burn (attoFIL/GasUnit)",
},
&cli.StringFlag{
Name: "gas-premium",
Usage: "gas price for new message",
Usage: "priority fee paid to miner (attoFIL/GasUnit)",
},
&cli.Int64Flag{
Name: "gas-limit",
Usage: "gas price for new message",
Usage: "gas limit for new message (GasUnit)",
},
&cli.BoolFlag{
Name: "auto",
Usage: "automatically reprice the specified message",
},
&cli.StringFlag{
Name: "max-fee",
Usage: "Spend up to X FIL for this message (applicable for auto mode)",
Usage: "Spend up to X attoFIL for this message (applicable for auto mode)",
},
},
ArgsUsage: "<from nonce> | <message-cid>",
Expand Down

0 comments on commit baae98d

Please sign in to comment.