* x/ibc ICS24 * changelog * move regex to /types * address @alexanderbez comments Co-authored-by: Jack Zampolin <jack.zampolin@gmail.com> Co-authored-by: Alexander Bezobchuk <alexanderbez@users.noreply.github.com>
16 lines
417 B
Go
16 lines
417 B
Go
package host
|
|
|
|
import (
|
|
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
|
|
)
|
|
|
|
// SubModuleName defines the ICS 24 host
|
|
const SubModuleName = "host"
|
|
|
|
// IBC client sentinel errors
|
|
var (
|
|
ErrInvalidID = sdkerrors.Register(SubModuleName, 1, "invalid identifier")
|
|
ErrInvalidPath = sdkerrors.Register(SubModuleName, 2, "invalid path")
|
|
ErrInvalidPacket = sdkerrors.Register(SubModuleName, 3, "invalid packet")
|
|
)
|