Merge pull request #6092 from filecoin-project/asr/shed-util-sanity

Shed util to sanity-check total balance is FilBase
This commit is contained in:
Łukasz Magiera 2021-04-23 16:00:13 +02:00 committed by GitHub
commit 21de8b2bd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,6 +10,8 @@ import (
"strings" "strings"
"time" "time"
"github.com/filecoin-project/lotus/build"
"github.com/filecoin-project/lotus/chain/gen/genesis" "github.com/filecoin-project/lotus/chain/gen/genesis"
_init "github.com/filecoin-project/lotus/chain/actors/builtin/init" _init "github.com/filecoin-project/lotus/chain/actors/builtin/init"
@ -64,12 +66,64 @@ var auditsCmd = &cli.Command{
Description: "a collection of utilities for auditing the filecoin chain", Description: "a collection of utilities for auditing the filecoin chain",
Subcommands: []*cli.Command{ Subcommands: []*cli.Command{
chainBalanceCmd, chainBalanceCmd,
chainBalanceSanityCheckCmd,
chainBalanceStateCmd, chainBalanceStateCmd,
chainPledgeCmd, chainPledgeCmd,
fillBalancesCmd, fillBalancesCmd,
}, },
} }
var chainBalanceSanityCheckCmd = &cli.Command{
Name: "chain-balance-sanity",
Description: "Confirms that the total balance of every actor in state is still 2 billion",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "tipset",
Usage: "specify tipset to start from",
},
},
Action: func(cctx *cli.Context) error {
api, closer, err := lcli.GetFullNodeAPI(cctx)
if err != nil {
return err
}
defer closer()
ctx := lcli.ReqContext(cctx)
ts, err := lcli.LoadTipSet(ctx, cctx, api)
if err != nil {
return err
}
tsk := ts.Key()
actors, err := api.StateListActors(ctx, tsk)
if err != nil {
return err
}
bal := big.Zero()
for _, addr := range actors {
act, err := api.StateGetActor(ctx, addr, tsk)
if err != nil {
return err
}
bal = big.Add(bal, act.Balance)
}
attoBase := big.Mul(big.NewInt(int64(build.FilBase)), big.NewInt(int64(build.FilecoinPrecision)))
if big.Cmp(attoBase, bal) != 0 {
return xerrors.Errorf("sanity check failed (expected %s, actual %s)", attoBase, bal)
}
fmt.Println("sanity check successful")
return nil
},
}
var chainBalanceCmd = &cli.Command{ var chainBalanceCmd = &cli.Command{
Name: "chain-balances", Name: "chain-balances",
Description: "Produces a csv file of all account balances", Description: "Produces a csv file of all account balances",