From 412c4a5087d1964c6886104ecea94add67571eb1 Mon Sep 17 00:00:00 2001 From: nhpd Date: Fri, 18 Oct 2024 13:55:08 +0400 Subject: [PATCH] remove altogether --- x/interchaintxs/types/tx.go | 6 ------ 1 file changed, 6 deletions(-) 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{}