Skip to content

Commit

Permalink
remove unused errors
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-ogrady committed Jul 21, 2023
1 parent 7ed01c8 commit 32ab6c9
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions examples/tokenvm/cmd/token-cli/cmd/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,9 @@ package cmd
import "errors"

var (
ErrInputEmpty = errors.New("input is empty")
ErrInvalidArgs = errors.New("invalid args")
ErrMissingSubcommand = errors.New("must specify a subcommand")
ErrIndexOutOfRange = errors.New("index out-of-range")
ErrInsufficientBalance = errors.New("insufficient balance")
ErrInvalidChoice = errors.New("invalid choice")
ErrNotMultiple = errors.New("must be a multiple")
ErrInsufficientSupply = errors.New("insufficient supply")
ErrMustFill = errors.New("must fill")
ErrDuplicate = errors.New("duplicate")
ErrNoKeys = errors.New("no available keys")
ErrNoChains = errors.New("no available chains")
ErrTxFailed = errors.New("tx failed")
ErrInvalidArgs = errors.New("invalid args")
ErrMissingSubcommand = errors.New("must specify a subcommand")
ErrNotMultiple = errors.New("must be a multiple")
ErrInsufficientSupply = errors.New("insufficient supply")
ErrMustFill = errors.New("must fill")
)

0 comments on commit 32ab6c9

Please sign in to comment.