erigon-pulse/cmd/state/commands/check_enc.go
ledgerwatch f06db2f37b
Stages 6 and 7 for generating history indices (#569)
* 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>
2020-05-23 10:19:56 +01:00

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)
},
}