Skip to content

Commit

Permalink
remove unused error definition
Browse files Browse the repository at this point in the history
  • Loading branch information
tbruyelle committed Nov 21, 2024
1 parent 41110e1 commit b1a3a1e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions x/photon/types/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ var (
ErrBurnInvalidDenom = sdkerrors.Register(ModuleName, 2, "invalid burned amount denom: expected bond denom") //nolint:staticcheck
ErrNoMintablePhotons = sdkerrors.Register(ModuleName, 3, "no more photon can be minted") //nolint:staticcheck
ErrNotEnoughPhotons = sdkerrors.Register(ModuleName, 4, "not enough photon can be minted") //nolint:staticcheck
ErrNoFeeCoin = sdkerrors.Register(ModuleName, 5, "no fee coins provided") //nolint:staticcheck
ErrTooManyFeeCoins = sdkerrors.Register(ModuleName, 6, "too many fee coins, only accepts fees in one denom") //nolint:staticcheck
ErrInvalidFeeToken = sdkerrors.Register(ModuleName, 7, "invalid fee token") //nolint:staticcheck
ErrTooManyFeeCoins = sdkerrors.Register(ModuleName, 5, "too many fee coins, only accepts fees in one denom") //nolint:staticcheck
ErrInvalidFeeToken = sdkerrors.Register(ModuleName, 6, "invalid fee token") //nolint:staticcheck

)

0 comments on commit b1a3a1e

Please sign in to comment.