mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-07 11:32:20 +00:00
8db5790838
* move experiments to new branch&reorganise kv_snapshot * walk&modify tests * added delete from snapshot tests * fmt * state snapshot debug * snapshot validation passed. copy state snapshot * debug * snapshot cursor.Prev test * Prev works correct. Added Current check * add err check * added walk forward and backward test * before refactoring * refactoring * execution with snapshot debug * fix * remove useless test * before dupcursor implimentation * tests with prev and delete works * execution based on state snapshot passed * remove useless tests * blocks to 1140000 passed * clean verifier * cleanup state generation * clean verify && seeder * remove debug code * tests passed * fix lint * save state * test passed * fix lint * add state hash * fix lint
57 lines
1.6 KiB
Go
57 lines
1.6 KiB
Go
package verify
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"github.com/ledgerwatch/lmdb-go/lmdb"
|
|
"github.com/ledgerwatch/turbo-geth/common/dbutils"
|
|
"github.com/ledgerwatch/turbo-geth/core/types"
|
|
"github.com/ledgerwatch/turbo-geth/ethdb"
|
|
"github.com/ledgerwatch/turbo-geth/log"
|
|
"github.com/ledgerwatch/turbo-geth/rlp"
|
|
)
|
|
|
|
func HeadersSnapshot(snapshotPath string) error {
|
|
snKV := ethdb.NewLMDB().Path(snapshotPath).Flags(func(flags uint) uint { return flags | lmdb.Readonly }).WithBucketsConfig(func(defaultBuckets dbutils.BucketsCfg) dbutils.BucketsCfg {
|
|
return dbutils.BucketsCfg{
|
|
dbutils.HeaderPrefix: dbutils.BucketConfigItem{},
|
|
dbutils.HeadersSnapshotInfoBucket: dbutils.BucketConfigItem{},
|
|
}
|
|
}).MustOpen()
|
|
var prevHeader *types.Header
|
|
err := snKV.View(context.Background(), func(tx ethdb.Tx) error {
|
|
c := tx.Cursor(dbutils.HeaderPrefix)
|
|
k, v, innerErr := c.First()
|
|
for {
|
|
if len(k) == 0 && len(v) == 0 {
|
|
break
|
|
}
|
|
if innerErr != nil {
|
|
return innerErr
|
|
}
|
|
|
|
header := new(types.Header)
|
|
innerErr := rlp.DecodeBytes(v, header)
|
|
if innerErr != nil {
|
|
return innerErr
|
|
}
|
|
|
|
if prevHeader != nil {
|
|
if prevHeader.Number.Uint64()+1 != header.Number.Uint64() {
|
|
log.Error("invalid header number", "p", prevHeader.Number.Uint64(), "c", header.Number.Uint64())
|
|
return errors.New("invalid header number")
|
|
}
|
|
if prevHeader.Hash() != header.ParentHash {
|
|
log.Error("invalid parent hash", "p", prevHeader.Hash(), "c", header.ParentHash)
|
|
return errors.New("invalid parent hash")
|
|
}
|
|
}
|
|
k, v, innerErr = c.Next() //nolint
|
|
prevHeader = header
|
|
}
|
|
return nil
|
|
})
|
|
return err
|
|
}
|