You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ErrRefundAccNotFound=sdkerrors.Register(ModuleName, 3, "no account found for given refund address")
11
12
ErrBalanceNotFound=sdkerrors.Register(ModuleName, 4, "balance not found for given account address")
@@ -16,4 +17,17 @@ var (
16
17
ErrFeeNotEnabled=sdkerrors.Register(ModuleName, 9, "fee module is not enabled for this channel. If this error occurs after channel setup, fee module may not be enabled")
17
18
ErrRelayerNotFoundForAsyncAck=sdkerrors.Register(ModuleName, 10, "relayer address must be stored for async WriteAcknowledgement")
18
19
ErrFeeModuleLocked=sdkerrors.Register(ModuleName, 11, "the fee module is currently locked, a severe bug has been detected")
ErrRefundAccNotFound=errorsmod.Register(ModuleName, 3, "no account found for given refund address")
23
+
ErrBalanceNotFound=errorsmod.Register(ModuleName, 4, "balance not found for given account address")
24
+
ErrFeeNotFound=errorsmod.Register(ModuleName, 5, "there is no fee escrowed for the given packetID")
25
+
ErrRelayersNotEmpty=errorsmod.Register(ModuleName, 6, "relayers must not be set. This feature is not supported")
26
+
ErrCounterpartyPayeeEmpty=errorsmod.Register(ModuleName, 7, "counterparty payee must not be empty")
27
+
ErrForwardRelayerAddressNotFound=errorsmod.Register(ModuleName, 8, "forward relayer address not found")
28
+
ErrFeeNotEnabled=errorsmod.Register(ModuleName, 9, "fee module is not enabled for this channel. If this error occurs after channel setup, fee module may not be enabled")
29
+
ErrRelayerNotFoundForAsyncAck=errorsmod.Register(ModuleName, 10, "relayer address must be stored for async WriteAcknowledgement")
30
+
ErrFeeModuleLocked=errorsmod.Register(ModuleName, 11, "the fee module is currently locked, a severe bug has been detected")
0 commit comments