laconicd/x/faucet/types/errors.go

11 lines
229 B
Go
Raw Normal View History

package types
import (
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
)
var (
// ErrWithdrawTooOften withdraw too often
ErrWithdrawTooOften = sdkerrors.Register(ModuleName, 2, "each address can withdraw only once")
)