Skip to content

Commit

Permalink
lotus-shed: add command to compute state over a range of tipsets.
Browse files Browse the repository at this point in the history
  • Loading branch information
raulk committed Mar 25, 2022
1 parent 11db419 commit 14c76d6
Showing 1 changed file with 60 additions and 1 deletion.
61 changes: 60 additions & 1 deletion cmd/lotus-shed/chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,17 @@ package main
import (
"fmt"

lcli "github.com/filecoin-project/lotus/cli"
"github.com/urfave/cli/v2"

lcli "github.com/filecoin-project/lotus/cli"
)

var chainCmd = &cli.Command{
Name: "chain",
Usage: "chain-related utilities",
Subcommands: []*cli.Command{
chainNullTsCmd,
computeStateRangeCmd,
},
}

Expand Down Expand Up @@ -47,3 +49,60 @@ var chainNullTsCmd = &cli.Command{
}
},
}

var computeStateRangeCmd = &cli.Command{
Name: "compute-state-range",
Usage: "forces the computation of a range of tipsets",
ArgsUsage: "[START_TIPSET_REF] [END_TIPSET_REF]",
Action: func(cctx *cli.Context) error {
if cctx.NArg() != 2 {
return fmt.Errorf("expected two arguments: a start and an end tipset")
}

api, closer, err := lcli.GetFullNodeAPI(cctx)
if err != nil {
return err
}

defer closer()
ctx := lcli.ReqContext(cctx)

startTs, err := lcli.ParseTipSetRef(ctx, api, cctx.Args().First())
if err != nil {
return err
}

endTs, err := lcli.ParseTipSetRef(ctx, api, cctx.Args().Get(1))
if err != nil {
return err
}

fmt.Printf("computing tipset at height %d (start)\n", startTs.Height())
if _, err := api.StateCompute(ctx, startTs.Height(), nil, startTs.Key()); err != nil {
return err
}

for height := startTs.Height() + 1; height < endTs.Height(); height++ {
fmt.Printf("computing tipset at height %d\n", height)

// The fact that the tipset lookup method takes a tipset is rather annoying.
// This is because we walk back from the supplied tipset (which could be the HEAD)
// to locate the desired one.
ts, err := api.ChainGetTipSetByHeight(ctx, height, endTs.Key())
if err != nil {
return err
}

if _, err := api.StateCompute(ctx, height, nil, ts.Key()); err != nil {
return err
}
}

fmt.Printf("computing tipset at height %d (end)\n", startTs.Height())
if _, err := api.StateCompute(ctx, endTs.Height(), nil, endTs.Key()); err != nil {
return err
}

return nil
},
}

0 comments on commit 14c76d6

Please sign in to comment.