erigon-pulse/cmd/state/commands/verify_snapshot.go

22 lines
479 B
Go
Raw Normal View History

package commands
import (
"github.com/ledgerwatch/turbo-geth/cmd/state/stateless"
"github.com/spf13/cobra"
)
func init() {
withBlock(verifySnapshotCmd)
withChaindata(verifySnapshotCmd)
rootCmd.AddCommand(verifySnapshotCmd)
}
var verifySnapshotCmd = &cobra.Command{
Use: "verifySnapshot",
Short: "Verifies snapshots made by the 'stateless' action",
RunE: func(cmd *cobra.Command, args []string) error {
stateless.VerifySnapshot(block, chaindata)
return nil
},
}