mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-01 00:31:21 +00:00
0be3044b7e
* rename * rename "make grpc" * rename "abi bindings templates" * rename "abi bindings templates"
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)
|
|
},
|
|
}
|