radiance: fix blockstore compact subcommand registration

This commit is contained in:
Richard Patel 2023-06-10 19:10:47 +00:00
parent 48210253ac
commit 4be17ecefb
1 changed files with 2 additions and 0 deletions

View File

@ -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,