diff --git a/cmd/canined/utils.go b/cmd/canined/utils.go index a3b06e5f..f97834f4 100644 --- a/cmd/canined/utils.go +++ b/cmd/canined/utils.go @@ -2,6 +2,7 @@ package main import ( "fmt" + "github.com/jackalLabs/canine-chain/v4/x/storage/types" "github.com/spf13/cobra" ) @@ -11,8 +12,7 @@ func AddressGenerationCommand() *cobra.Command { Use: "get-address [value]", Short: "Generate an address from text, the same system used to generate protocol owned accounts.", Args: cobra.ExactArgs(1), - RunE: func(cmd *cobra.Command, args []string) error { - + RunE: func(_ *cobra.Command, args []string) error { acc, err := types.GetAccount(args[0]) if err != nil { return err