40 lines
754 B
Go
40 lines
754 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"strconv"
|
||
|
|
||
|
"github.com/filecoin-project/go-fil-markets/storagemarket"
|
||
|
"github.com/urfave/cli/v2"
|
||
|
)
|
||
|
|
||
|
var miscCmd = &cli.Command{
|
||
|
Name: "misc",
|
||
|
Usage: "Assorted unsorted commands for various purposes",
|
||
|
Flags: []cli.Flag{},
|
||
|
Subcommands: []*cli.Command{
|
||
|
dealStateMappingCmd,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
var dealStateMappingCmd = &cli.Command{
|
||
|
Name: "deal-state",
|
||
|
Action: func(cctx *cli.Context) error {
|
||
|
if !cctx.Args().Present() {
|
||
|
return cli.ShowCommandHelp(cctx, cctx.Command.Name)
|
||
|
}
|
||
|
|
||
|
num, err := strconv.Atoi(cctx.Args().First())
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
ststr, ok := storagemarket.DealStates[uint64(num)]
|
||
|
if !ok {
|
||
|
return fmt.Errorf("no such deal state %d", num)
|
||
|
}
|
||
|
fmt.Println(ststr)
|
||
|
return nil
|
||
|
},
|
||
|
}
|