Merge pull request #5900 from filecoin-project/mg/chore/move-mpool-clear

chore: Move lotus mpool clear to lotus-shed
This commit is contained in:
Łukasz Magiera
2021-04-05 18:43:57 +02:00
committed by GitHub
2 changed files with 39 additions and 2 deletions
+5 -2
View File
@@ -132,9 +132,11 @@ var MpoolPending = &cli.Command{
},
}
// Deprecated: MpoolClear is now available at `lotus-shed mpool clear`
var MpoolClear = &cli.Command{
Name: "clear",
Usage: "Clear all pending messages from the mpool (USE WITH CARE)",
Name: "clear",
Usage: "Clear all pending messages from the mpool (USE WITH CARE) (DEPRECATED)",
Hidden: true,
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "local",
@@ -146,6 +148,7 @@ var MpoolClear = &cli.Command{
},
},
Action: func(cctx *cli.Context) error {
fmt.Println("DEPRECATED: This behavior is being moved to `lotus-shed mpool clear`")
api, closer, err := GetFullNodeAPI(cctx)
if err != nil {
return err