2019-10-30 23:05:37 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/state/interop"
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/db"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/featureconfig"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// Required fields
|
|
|
|
datadir = flag.String("datadir", "", "Path to data directory.")
|
|
|
|
|
|
|
|
state = flag.Uint("state", 0, "Extract state at this slot.")
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2020-04-28 01:13:33 +00:00
|
|
|
resetCfg := featureconfig.InitWithReset(&featureconfig.Flags{WriteSSZStateTransitions: true})
|
|
|
|
defer resetCfg()
|
2019-10-30 23:05:37 +00:00
|
|
|
flag.Parse()
|
|
|
|
fmt.Println("Starting process...")
|
2020-12-16 16:56:21 +00:00
|
|
|
d, err := db.NewDB(context.Background(), *datadir)
|
2019-10-30 23:05:37 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
ctx := context.Background()
|
|
|
|
slot := uint64(*state)
|
2021-01-12 18:31:15 +00:00
|
|
|
_, roots, err := d.BlockRootsBySlot(ctx, slot)
|
2019-10-30 23:05:37 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
if len(roots) != 1 {
|
|
|
|
fmt.Printf("Expected 1 block root for slot %d, got %d roots", *state, len(roots))
|
|
|
|
}
|
|
|
|
s, err := d.State(ctx, roots[0])
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
interop.WriteStateToDisk(s)
|
|
|
|
fmt.Println("done")
|
|
|
|
}
|