mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-26 05:27:19 +00:00
e6c056e666
* rename from Datadir to DataDir (functions and public vars) * rename dataDir to datadir (local variables)
21 lines
398 B
Go
21 lines
398 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/ledgerwatch/erigon/cmd/state/verify"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
withDataDir(checkEncCmd)
|
|
withStatsfile(checkEncCmd)
|
|
rootCmd.AddCommand(checkEncCmd)
|
|
}
|
|
|
|
var checkEncCmd = &cobra.Command{
|
|
Use: "checkEnc",
|
|
Short: "Check changesets Encoding",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
return verify.CheckEnc(chaindata)
|
|
},
|
|
}
|