mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-25 21:17:16 +00:00
f06db2f37b
* save state * add current index feature * fix test * remove logs * Only execute 1000 blocks * Reset history index * Correct action * Increase batch size * Increase chunk size, print memory stats * Fix linter * Remove unused from * Split into 2 staged * Use storage history gen * remove log * Not to run tx_cacher in staged mode * Not to recover during stage 2 * Not to recover during stage 2 * Remove counter Co-authored-by: b00ris <b00ris@mail.ru>
21 lines
404 B
Go
21 lines
404 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/ledgerwatch/turbo-geth/cmd/state/verify"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
withChaindata(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)
|
|
},
|
|
}
|