mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
ae1e435231
* Don't delete boundary state * Lint * Test * Feedback * Batch and better comment * Fix test * zzzzzz * rmStatesOlderThanLastFinalized
45 lines
925 B
Go
45 lines
925 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
|
|
"github.com/prysmaticlabs/go-ssz"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/db"
|
|
)
|
|
|
|
// A basic tool to extract genesis.ssz from existing beaconchain.db.
|
|
// ex:
|
|
// bazel run //tools/interop/export-genesis:export-genesis -- /tmp/data/beaconchaindata /tmp/genesis.ssz
|
|
func main() {
|
|
if len(os.Args) < 3 {
|
|
fmt.Println("Usage: ./main /path/to/datadir /path/to/output/genesis.ssz")
|
|
os.Exit(1)
|
|
}
|
|
|
|
fmt.Printf("Reading db at %s and writing ssz output to %s.\n", os.Args[1], os.Args[2])
|
|
|
|
d, err := db.NewDB(os.Args[1])
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
defer d.Close()
|
|
gs, err := d.GenesisState(context.Background())
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
if gs == nil {
|
|
panic("nil genesis state")
|
|
}
|
|
b, err := ssz.Marshal(gs)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
if err := ioutil.WriteFile(os.Args[2], b, 0644); err != nil {
|
|
panic(err)
|
|
}
|
|
fmt.Println("done")
|
|
}
|