mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 09:14:28 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
33 lines
563 B
Go
33 lines
563 B
Go
package db
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/beacon-chain/db/kv"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
var bucketsFlags = struct {
|
|
Path string
|
|
}{}
|
|
|
|
var bucketsCmd = &cli.Command{
|
|
Name: "buckets",
|
|
Usage: "list db buckets",
|
|
Action: bucketsAction,
|
|
Flags: []cli.Flag{
|
|
&cli.StringFlag{
|
|
Name: "path",
|
|
Usage: "path to directory containing beaconchain.db",
|
|
Destination: &bucketsFlags.Path,
|
|
},
|
|
},
|
|
}
|
|
|
|
func bucketsAction(_ *cli.Context) error {
|
|
for _, b := range kv.Buckets {
|
|
fmt.Printf("%s\n", string(b))
|
|
}
|
|
return nil
|
|
}
|