diff --git a/x/interchaintxs/types/tx.go b/x/interchaintxs/types/tx.go index 5f19c2524..f416cc46f 100644 --- a/x/interchaintxs/types/tx.go +++ b/x/interchaintxs/types/tx.go @@ -18,8 +18,6 @@ const interchainAccountIDLimit = 128 - len("neutron1unyuj8qnmygvzuex3dwmg9yzt9alhvyeat0uu0jedg2wj33efl5qmysp02") - // just a random contract address len(".") -var _ codectypes.UnpackInterfacesMessage = &MsgSubmitTx{} - func (msg *MsgRegisterInterchainAccount) Validate() error { if len(msg.ConnectionId) == 0 { return ErrEmptyConnectionID @@ -119,10 +117,6 @@ func PackTxMsgAny(sdkMsg sdk.Msg) (*codectypes.Any, error) { return value, nil } -func (msg *MsgSubmitTx) UnpackInterfaces(unpacker codectypes.AnyUnpacker) error { - return nil -} - //---------------------------------------------------------------- var _ sdk.Msg = &MsgUpdateParams{}