Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMarstonConnell committed Oct 25, 2024
1 parent 987db60 commit daeac83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/canined/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package main

import (
"fmt"

"github.com/jackalLabs/canine-chain/v4/x/storage/types"
"github.com/spf13/cobra"
)
Expand All @@ -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
Expand Down

0 comments on commit daeac83

Please sign in to comment.