2022-10-26 21:28:02 +00:00
|
|
|
package db
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2024-02-15 05:46:47 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/v5/beacon-chain/db/kv"
|
2022-10-26 21:28:02 +00:00
|
|
|
"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
|
|
|
|
}
|