We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 614868b commit 09dfe2bCopy full SHA for 09dfe2b
cmd/lotus-shed/f3.go
@@ -83,10 +83,15 @@ var f3CheckActivation = &cli.Command{
83
Name: "contract",
84
Usage: "address contract to query",
85
},
86
+ &cli.StringFlag{
87
+ Name: "networkname",
88
+ Usage: "name of the network to be used",
89
+ Value: "filecoin",
90
+ },
91
92
Action: func(cctx *cli.Context) error {
93
config := lf3.Config{
- BaseNetworkName: "filecoin",
94
+ BaseNetworkName: gpbft.NetworkName(cctx.String("networkname")),
95
ContractAddress: cctx.String("contract"),
96
ContractPollInterval: 15 * time.Second,
97
}
0 commit comments