radiance: fix blockstore compact subcommand registration

pull/121/head
Richard Patel 3 months ago
parent 48210253ac
commit 4be17ecefb
  1. 2
      cmd/radiance/blockstore/blockstore.go

@ -4,6 +4,7 @@ package blockstore
import (
"github.com/spf13/cobra"
"go.firedancer.io/radiance/cmd/radiance/blockstore/compact"
"go.firedancer.io/radiance/cmd/radiance/blockstore/dumpbatches"
"go.firedancer.io/radiance/cmd/radiance/blockstore/dumpshreds"
"go.firedancer.io/radiance/cmd/radiance/blockstore/statdatarate"
@ -19,6 +20,7 @@ var Cmd = cobra.Command{
func init() {
Cmd.AddCommand(
&compact.Cmd,
&dumpshreds.Cmd,
&dumpbatches.Cmd,
&statdatarate.Cmd,

Loading…
Cancel
Save