diff --git a/docs/ibc/light-clients/setup.md b/docs/ibc/light-clients/setup.md index 288f2b74def..be4e74a5334 100644 --- a/docs/ibc/light-clients/setup.md +++ b/docs/ibc/light-clients/setup.md @@ -82,7 +82,6 @@ Stateless checks are performed within the [`ValidateBasic`](https://github.com/c ```protobuf // MsgCreateClient defines a message to create an IBC client message MsgCreateClient { - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; // light client state diff --git a/docs/migrations/v7-to-v8.md b/docs/migrations/v7-to-v8.md index 8ff2323a4f7..d49bd178e6e 100644 --- a/docs/migrations/v7-to-v8.md +++ b/docs/migrations/v7-to-v8.md @@ -80,7 +80,7 @@ TODO: https://github.com/cosmos/ibc-go/pull/3303 ## Relayers -- No relevant changes were made in this release. +- Getter functions in `MsgChannelOpenInitResponse`, `MsgChannelOpenTryResponse`, `MsgTransferResponse`, `MsgRegisterInterchainAccountResponse` and `MsgSendTxResponse` have been removed. The fields can be accessed directly. ## IBC Light Clients diff --git a/e2e/tests/interchain_accounts/localhost_test.go b/e2e/tests/interchain_accounts/localhost_test.go index 8977f2267bf..fa5ba918e83 100644 --- a/e2e/tests/interchain_accounts/localhost_test.go +++ b/e2e/tests/interchain_accounts/localhost_test.go @@ -71,7 +71,7 @@ func (s *LocalhostInterchainAccountsTestSuite) TestInterchainAccounts_Localhost( msgChanOpenTry := channeltypes.NewMsgChannelOpenTry( icatypes.HostPortID, icatypes.Version, channeltypes.ORDERED, []string{exported.LocalhostConnectionID}, - controllerPortID, msgChanOpenInitRes.GetChannelId(), + controllerPortID, msgChanOpenInitRes.ChannelId, version, localhost.SentinelProof, clienttypes.ZeroHeight(), rlyWallet.FormattedAddress(), ) @@ -83,8 +83,8 @@ func (s *LocalhostInterchainAccountsTestSuite) TestInterchainAccounts_Localhost( t.Run("channel open ack localhost", func(t *testing.T) { msgChanOpenAck := channeltypes.NewMsgChannelOpenAck( - controllerPortID, msgChanOpenInitRes.GetChannelId(), - msgChanOpenTryRes.GetChannelId(), msgChanOpenTryRes.GetVersion(), + controllerPortID, msgChanOpenInitRes.ChannelId, + msgChanOpenTryRes.ChannelId, msgChanOpenTryRes.Version, localhost.SentinelProof, clienttypes.ZeroHeight(), rlyWallet.FormattedAddress(), ) @@ -94,7 +94,7 @@ func (s *LocalhostInterchainAccountsTestSuite) TestInterchainAccounts_Localhost( t.Run("channel open confirm localhost", func(t *testing.T) { msgChanOpenConfirm := channeltypes.NewMsgChannelOpenConfirm( - icatypes.HostPortID, msgChanOpenTryRes.GetChannelId(), + icatypes.HostPortID, msgChanOpenTryRes.ChannelId, localhost.SentinelProof, clienttypes.ZeroHeight(), rlyWallet.FormattedAddress(), ) @@ -103,11 +103,11 @@ func (s *LocalhostInterchainAccountsTestSuite) TestInterchainAccounts_Localhost( }) t.Run("query localhost interchain accounts channel ends", func(t *testing.T) { - channelEndA, err := s.QueryChannel(ctx, chainA, controllerPortID, msgChanOpenInitRes.GetChannelId()) + channelEndA, err := s.QueryChannel(ctx, chainA, controllerPortID, msgChanOpenInitRes.ChannelId) s.Require().NoError(err) s.Require().NotNil(channelEndA) - channelEndB, err := s.QueryChannel(ctx, chainA, icatypes.HostPortID, msgChanOpenTryRes.GetChannelId()) + channelEndB, err := s.QueryChannel(ctx, chainA, icatypes.HostPortID, msgChanOpenTryRes.ChannelId) s.Require().NoError(err) s.Require().NotNil(channelEndB) @@ -228,7 +228,7 @@ func (s *LocalhostInterchainAccountsTestSuite) TestInterchainAccounts_ReopenChan msgChanOpenTry := channeltypes.NewMsgChannelOpenTry( icatypes.HostPortID, icatypes.Version, channeltypes.ORDERED, []string{exported.LocalhostConnectionID}, - controllerPortID, msgChanOpenInitRes.GetChannelId(), + controllerPortID, msgChanOpenInitRes.ChannelId, version, localhost.SentinelProof, clienttypes.ZeroHeight(), rlyWallet.FormattedAddress(), ) @@ -240,8 +240,8 @@ func (s *LocalhostInterchainAccountsTestSuite) TestInterchainAccounts_ReopenChan t.Run("channel open ack localhost", func(t *testing.T) { msgChanOpenAck := channeltypes.NewMsgChannelOpenAck( - controllerPortID, msgChanOpenInitRes.GetChannelId(), - msgChanOpenTryRes.GetChannelId(), msgChanOpenTryRes.GetVersion(), + controllerPortID, msgChanOpenInitRes.ChannelId, + msgChanOpenTryRes.ChannelId, msgChanOpenTryRes.Version, localhost.SentinelProof, clienttypes.ZeroHeight(), rlyWallet.FormattedAddress(), ) @@ -251,7 +251,7 @@ func (s *LocalhostInterchainAccountsTestSuite) TestInterchainAccounts_ReopenChan t.Run("channel open confirm localhost", func(t *testing.T) { msgChanOpenConfirm := channeltypes.NewMsgChannelOpenConfirm( - icatypes.HostPortID, msgChanOpenTryRes.GetChannelId(), + icatypes.HostPortID, msgChanOpenTryRes.ChannelId, localhost.SentinelProof, clienttypes.ZeroHeight(), rlyWallet.FormattedAddress(), ) @@ -260,11 +260,11 @@ func (s *LocalhostInterchainAccountsTestSuite) TestInterchainAccounts_ReopenChan }) t.Run("query localhost interchain accounts channel ends", func(t *testing.T) { - channelEndA, err := s.QueryChannel(ctx, chainA, controllerPortID, msgChanOpenInitRes.GetChannelId()) + channelEndA, err := s.QueryChannel(ctx, chainA, controllerPortID, msgChanOpenInitRes.ChannelId) s.Require().NoError(err) s.Require().NotNil(channelEndA) - channelEndB, err := s.QueryChannel(ctx, chainA, icatypes.HostPortID, msgChanOpenTryRes.GetChannelId()) + channelEndB, err := s.QueryChannel(ctx, chainA, icatypes.HostPortID, msgChanOpenTryRes.ChannelId) s.Require().NoError(err) s.Require().NotNil(channelEndB) @@ -357,7 +357,7 @@ func (s *LocalhostInterchainAccountsTestSuite) TestInterchainAccounts_ReopenChan msgChanOpenTry := channeltypes.NewMsgChannelOpenTry( icatypes.HostPortID, icatypes.Version, channeltypes.ORDERED, []string{exported.LocalhostConnectionID}, - controllerPortID, msgChanOpenInitRes.GetChannelId(), + controllerPortID, msgChanOpenInitRes.ChannelId, version, localhost.SentinelProof, clienttypes.ZeroHeight(), rlyWallet.FormattedAddress(), ) @@ -370,8 +370,8 @@ func (s *LocalhostInterchainAccountsTestSuite) TestInterchainAccounts_ReopenChan t.Run("channel open ack localhost", func(t *testing.T) { msgChanOpenAck := channeltypes.NewMsgChannelOpenAck( - controllerPortID, msgChanOpenInitRes.GetChannelId(), - msgChanOpenTryRes.GetChannelId(), msgChanOpenTryRes.GetVersion(), + controllerPortID, msgChanOpenInitRes.ChannelId, + msgChanOpenTryRes.ChannelId, msgChanOpenTryRes.Version, localhost.SentinelProof, clienttypes.ZeroHeight(), rlyWallet.FormattedAddress(), ) @@ -381,7 +381,7 @@ func (s *LocalhostInterchainAccountsTestSuite) TestInterchainAccounts_ReopenChan t.Run("channel open confirm localhost", func(t *testing.T) { msgChanOpenConfirm := channeltypes.NewMsgChannelOpenConfirm( - icatypes.HostPortID, msgChanOpenTryRes.GetChannelId(), + icatypes.HostPortID, msgChanOpenTryRes.ChannelId, localhost.SentinelProof, clienttypes.ZeroHeight(), rlyWallet.FormattedAddress(), ) @@ -390,11 +390,11 @@ func (s *LocalhostInterchainAccountsTestSuite) TestInterchainAccounts_ReopenChan }) t.Run("query localhost interchain accounts channel ends", func(t *testing.T) { - channelEndA, err := s.QueryChannel(ctx, chainA, controllerPortID, msgChanOpenInitRes.GetChannelId()) + channelEndA, err := s.QueryChannel(ctx, chainA, controllerPortID, msgChanOpenInitRes.ChannelId) s.Require().NoError(err) s.Require().NotNil(channelEndA) - channelEndB, err := s.QueryChannel(ctx, chainA, icatypes.HostPortID, msgChanOpenTryRes.GetChannelId()) + channelEndB, err := s.QueryChannel(ctx, chainA, icatypes.HostPortID, msgChanOpenTryRes.ChannelId) s.Require().NoError(err) s.Require().NotNil(channelEndB) @@ -465,7 +465,7 @@ func (s *LocalhostInterchainAccountsTestSuite) TestInterchainAccounts_ReopenChan }) t.Run("verify tokens transferred", func(t *testing.T) { - s.AssertPacketRelayed(ctx, chainA, controllerPortID, msgChanOpenInitRes.GetChannelId(), 1) + s.AssertPacketRelayed(ctx, chainA, controllerPortID, msgChanOpenInitRes.ChannelId, 1) balance, err := chainA.GetBalance(ctx, userBWallet.FormattedAddress(), chainADenom) s.Require().NoError(err) diff --git a/e2e/tests/transfer/localhost_test.go b/e2e/tests/transfer/localhost_test.go index c8b1bf94bb5..e09331fc98c 100644 --- a/e2e/tests/transfer/localhost_test.go +++ b/e2e/tests/transfer/localhost_test.go @@ -70,7 +70,7 @@ func (s *LocalhostTransferTestSuite) TestMsgTransfer_Localhost() { msgChanOpenTry := channeltypes.NewMsgChannelOpenTry( transfertypes.PortID, transfertypes.Version, channeltypes.UNORDERED, []string{exported.LocalhostConnectionID}, - transfertypes.PortID, msgChanOpenInitRes.GetChannelId(), + transfertypes.PortID, msgChanOpenInitRes.ChannelId, transfertypes.Version, localhost.SentinelProof, clienttypes.ZeroHeight(), rlyWallet.FormattedAddress(), ) @@ -82,8 +82,8 @@ func (s *LocalhostTransferTestSuite) TestMsgTransfer_Localhost() { t.Run("channel open ack localhost", func(t *testing.T) { msgChanOpenAck := channeltypes.NewMsgChannelOpenAck( - transfertypes.PortID, msgChanOpenInitRes.GetChannelId(), - msgChanOpenTryRes.GetChannelId(), transfertypes.Version, + transfertypes.PortID, msgChanOpenInitRes.ChannelId, + msgChanOpenTryRes.ChannelId, transfertypes.Version, localhost.SentinelProof, clienttypes.ZeroHeight(), rlyWallet.FormattedAddress(), ) @@ -93,7 +93,7 @@ func (s *LocalhostTransferTestSuite) TestMsgTransfer_Localhost() { t.Run("channel open confirm localhost", func(t *testing.T) { msgChanOpenConfirm := channeltypes.NewMsgChannelOpenConfirm( - transfertypes.PortID, msgChanOpenTryRes.GetChannelId(), + transfertypes.PortID, msgChanOpenTryRes.ChannelId, localhost.SentinelProof, clienttypes.ZeroHeight(), rlyWallet.FormattedAddress(), ) @@ -102,11 +102,11 @@ func (s *LocalhostTransferTestSuite) TestMsgTransfer_Localhost() { }) t.Run("query localhost transfer channel ends", func(t *testing.T) { - channelEndA, err := s.QueryChannel(ctx, chainA, transfertypes.PortID, msgChanOpenInitRes.GetChannelId()) + channelEndA, err := s.QueryChannel(ctx, chainA, transfertypes.PortID, msgChanOpenInitRes.ChannelId) s.Require().NoError(err) s.Require().NotNil(channelEndA) - channelEndB, err := s.QueryChannel(ctx, chainA, transfertypes.PortID, msgChanOpenTryRes.GetChannelId()) + channelEndB, err := s.QueryChannel(ctx, chainA, transfertypes.PortID, msgChanOpenTryRes.ChannelId) s.Require().NoError(err) s.Require().NotNil(channelEndB) @@ -115,7 +115,7 @@ func (s *LocalhostTransferTestSuite) TestMsgTransfer_Localhost() { t.Run("send packet localhost ibc transfer", func(t *testing.T) { var err error - txResp := s.Transfer(ctx, chainA, userAWallet, transfertypes.PortID, msgChanOpenInitRes.GetChannelId(), testvalues.DefaultTransferAmount(chainADenom), userAWallet.FormattedAddress(), userBWallet.FormattedAddress(), clienttypes.NewHeight(1, 100), 0, "") + txResp := s.Transfer(ctx, chainA, userAWallet, transfertypes.PortID, msgChanOpenInitRes.ChannelId, testvalues.DefaultTransferAmount(chainADenom), userAWallet.FormattedAddress(), userBWallet.FormattedAddress(), clienttypes.NewHeight(1, 100), 0, "") s.AssertTxSuccess(txResp) events := testsuite.ABCIToSDKEvents(txResp.Events) @@ -153,9 +153,9 @@ func (s *LocalhostTransferTestSuite) TestMsgTransfer_Localhost() { }) t.Run("verify tokens transferred", func(t *testing.T) { - s.AssertPacketRelayed(ctx, chainA, transfertypes.PortID, msgChanOpenInitRes.GetChannelId(), 1) + s.AssertPacketRelayed(ctx, chainA, transfertypes.PortID, msgChanOpenInitRes.ChannelId, 1) - ibcToken := testsuite.GetIBCToken(chainADenom, transfertypes.PortID, msgChanOpenTryRes.GetChannelId()) + ibcToken := testsuite.GetIBCToken(chainADenom, transfertypes.PortID, msgChanOpenTryRes.ChannelId) actualBalance, err := chainA.GetBalance(ctx, userBWallet.FormattedAddress(), ibcToken.IBCDenom()) s.Require().NoError(err) diff --git a/modules/apps/27-interchain-accounts/controller/types/tx.pb.go b/modules/apps/27-interchain-accounts/controller/types/tx.pb.go index 28ac4241013..37e1ba86816 100644 --- a/modules/apps/27-interchain-accounts/controller/types/tx.pb.go +++ b/modules/apps/27-interchain-accounts/controller/types/tx.pb.go @@ -109,20 +109,6 @@ func (m *MsgRegisterInterchainAccountResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgRegisterInterchainAccountResponse proto.InternalMessageInfo -func (m *MsgRegisterInterchainAccountResponse) GetChannelId() string { - if m != nil { - return m.ChannelId - } - return "" -} - -func (m *MsgRegisterInterchainAccountResponse) GetPortId() string { - if m != nil { - return m.PortId - } - return "" -} - // MsgSendTx defines the payload for Msg/SendTx type MsgSendTx struct { Owner string `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"` @@ -204,13 +190,6 @@ func (m *MsgSendTxResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgSendTxResponse proto.InternalMessageInfo -func (m *MsgSendTxResponse) GetSequence() uint64 { - if m != nil { - return m.Sequence - } - return 0 -} - // MsgUpdateParams defines the payload for Msg/UpdateParams type MsgUpdateParams struct { // authority is the address that controls the module (defaults to x/gov unless overwritten). @@ -254,20 +233,6 @@ func (m *MsgUpdateParams) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateParams proto.InternalMessageInfo -func (m *MsgUpdateParams) GetAuthority() string { - if m != nil { - return m.Authority - } - return "" -} - -func (m *MsgUpdateParams) GetParams() Params { - if m != nil { - return m.Params - } - return Params{} -} - // MsgUpdateParamsResponse defines the response for Msg/UpdateParams type MsgUpdateParamsResponse struct { } @@ -320,46 +285,46 @@ func init() { var fileDescriptor_7def041328c84a30 = []byte{ // 628 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0xcf, 0x4f, 0x13, 0x41, - 0x14, 0xde, 0x91, 0x52, 0xec, 0x80, 0xa2, 0x1b, 0x12, 0xca, 0x06, 0x17, 0x52, 0x3d, 0x20, 0x09, - 0x3b, 0x69, 0x35, 0x21, 0xc1, 0x78, 0x10, 0xf0, 0xd0, 0x98, 0x26, 0xcd, 0x8a, 0x09, 0xf1, 0x60, - 0x33, 0x9d, 0x9d, 0x6c, 0x47, 0x76, 0x67, 0xd6, 0x9d, 0xd9, 0x15, 0x6e, 0xc6, 0x8b, 0xc6, 0x83, - 0xf1, 0xea, 0x8d, 0x3f, 0x81, 0xff, 0x42, 0x8e, 0x1c, 0x3d, 0x19, 0x03, 0x07, 0x3c, 0xfb, 0x17, - 0x98, 0xfd, 0xd1, 0x2d, 0x2a, 0x12, 0x2c, 0xdc, 0xfa, 0xde, 0xeb, 0xf7, 0xbd, 0xef, 0x7b, 0xf3, - 0xf6, 0xc1, 0x07, 0xac, 0x4b, 0x10, 0x0e, 0x02, 0x8f, 0x11, 0xac, 0x98, 0xe0, 0x12, 0x31, 0xae, - 0x68, 0x48, 0x7a, 0x98, 0xf1, 0x0e, 0x26, 0x44, 0x44, 0x5c, 0x49, 0x44, 0x04, 0x57, 0xa1, 0xf0, - 0x3c, 0x1a, 0xa2, 0xb8, 0x8e, 0xd4, 0xb6, 0x15, 0x84, 0x42, 0x09, 0xbd, 0xc1, 0xba, 0xc4, 0x3a, - 0x09, 0xb6, 0x4e, 0x01, 0x5b, 0x03, 0xb0, 0x15, 0xd7, 0x8d, 0x29, 0x57, 0xb8, 0x22, 0x85, 0xa3, - 0xe4, 0x57, 0xc6, 0x64, 0xdc, 0x3f, 0x97, 0x8c, 0xb8, 0x8e, 0x02, 0x4c, 0xb6, 0xa8, 0xca, 0x51, - 0x6b, 0x43, 0x88, 0x3f, 0xa1, 0x26, 0x23, 0x99, 0x26, 0x42, 0xfa, 0x42, 0x22, 0x5f, 0xba, 0x49, - 0xdd, 0x97, 0x6e, 0x56, 0xa8, 0xbd, 0x03, 0x70, 0xb6, 0x25, 0x5d, 0x9b, 0xba, 0x4c, 0x2a, 0x1a, - 0x36, 0x0b, 0xea, 0x47, 0x19, 0xb3, 0x3e, 0x05, 0x47, 0xc5, 0x6b, 0x4e, 0xc3, 0x2a, 0x98, 0x07, - 0x0b, 0x15, 0x3b, 0x0b, 0xf4, 0xdb, 0xf0, 0x1a, 0x11, 0x9c, 0x53, 0x92, 0x28, 0xea, 0x30, 0xa7, - 0x7a, 0x25, 0xad, 0x4e, 0x0c, 0x92, 0x4d, 0x47, 0xaf, 0xc2, 0xb1, 0x98, 0x86, 0x92, 0x09, 0x5e, - 0x1d, 0x49, 0xcb, 0xfd, 0x70, 0x45, 0x7f, 0xbf, 0x3b, 0xa7, 0xfd, 0xd8, 0x9d, 0xd3, 0xde, 0x1e, - 0xef, 0x2d, 0x66, 0x94, 0xb5, 0x17, 0xf0, 0xce, 0x59, 0x42, 0x6c, 0x2a, 0x03, 0xc1, 0x25, 0xd5, - 0x6f, 0x41, 0x48, 0x7a, 0x98, 0x73, 0xea, 0x25, 0x7d, 0x33, 0x55, 0x95, 0x3c, 0xd3, 0x74, 0xf4, - 0x69, 0x38, 0x16, 0x88, 0x50, 0x0d, 0x34, 0x95, 0x93, 0xb0, 0xe9, 0xd4, 0x7e, 0x02, 0x58, 0x69, - 0x49, 0xf7, 0x29, 0xe5, 0xce, 0xc6, 0xf6, 0x45, 0x6c, 0x6d, 0xc1, 0xf1, 0xec, 0x81, 0x3a, 0x0e, - 0x56, 0x38, 0xb5, 0x36, 0xde, 0x58, 0xb7, 0xce, 0xb5, 0x26, 0x71, 0xdd, 0xfa, 0xcb, 0x59, 0x3b, - 0x25, 0x5b, 0xc7, 0x0a, 0xaf, 0x96, 0xf6, 0xbf, 0xcd, 0x69, 0x36, 0x0c, 0x8a, 0x8c, 0x7e, 0x17, - 0xde, 0x08, 0xa9, 0x87, 0x15, 0x8b, 0x69, 0x47, 0x31, 0x9f, 0x8a, 0x48, 0x55, 0x4b, 0xf3, 0x60, - 0xa1, 0x64, 0x4f, 0xf6, 0xf3, 0x1b, 0x59, 0xfa, 0xd4, 0xa1, 0x22, 0x78, 0xb3, 0xf0, 0x5c, 0x4c, - 0xd0, 0x80, 0x57, 0x25, 0x7d, 0x15, 0x51, 0x4e, 0x68, 0x6a, 0xbf, 0x64, 0x17, 0x71, 0xed, 0x33, - 0x80, 0x93, 0x2d, 0xe9, 0x3e, 0x0b, 0x1c, 0xac, 0x68, 0x1b, 0x87, 0xd8, 0x97, 0xfa, 0x2c, 0xac, - 0xe0, 0x48, 0xf5, 0x44, 0xc8, 0xd4, 0x4e, 0x7f, 0xe0, 0x45, 0x42, 0xdf, 0x84, 0xe5, 0x20, 0xfd, - 0x5f, 0x3a, 0xac, 0xf1, 0xc6, 0x8a, 0xf5, 0xff, 0x1f, 0x8c, 0x95, 0x75, 0xca, 0xfd, 0xe7, 0x7c, - 0x2b, 0xd7, 0x13, 0x23, 0x83, 0x4e, 0xb5, 0x19, 0x38, 0xfd, 0x87, 0xb4, 0xbe, 0xa5, 0xc6, 0x87, - 0x12, 0x1c, 0x69, 0x49, 0x57, 0xff, 0x02, 0xe0, 0xcc, 0xbf, 0x77, 0xb9, 0x3d, 0x8c, 0xb4, 0xb3, - 0x96, 0xd2, 0xd8, 0xbc, 0x6c, 0xc6, 0xe2, 0x91, 0x3e, 0x02, 0x58, 0xce, 0x77, 0xf5, 0xe1, 0x90, - 0x4d, 0x32, 0xb8, 0xf1, 0xf8, 0x42, 0xf0, 0x42, 0xd0, 0x2e, 0x80, 0x13, 0xbf, 0xad, 0xc5, 0xda, - 0x90, 0xbc, 0x27, 0x49, 0x8c, 0x27, 0x97, 0x40, 0xd2, 0x97, 0x68, 0x8c, 0xbe, 0x39, 0xde, 0x5b, - 0x04, 0xab, 0x2f, 0xf7, 0x0f, 0x4d, 0x70, 0x70, 0x68, 0x82, 0xef, 0x87, 0x26, 0xf8, 0x74, 0x64, - 0x6a, 0x07, 0x47, 0xa6, 0xf6, 0xf5, 0xc8, 0xd4, 0x9e, 0xb7, 0x5d, 0xa6, 0x7a, 0x51, 0xd7, 0x22, - 0xc2, 0x47, 0xf9, 0x45, 0x64, 0x5d, 0xb2, 0xe4, 0x0a, 0x14, 0x2f, 0x23, 0x5f, 0x38, 0x91, 0x47, - 0x65, 0x72, 0x6b, 0x25, 0x6a, 0x2c, 0x2f, 0x0d, 0x74, 0x2c, 0x9d, 0x76, 0x66, 0xd5, 0x4e, 0x40, - 0x65, 0xb7, 0x9c, 0x9e, 0xd1, 0x7b, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0xe0, 0x19, 0x0f, 0x13, - 0x63, 0x06, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0x4f, 0x4f, 0x13, 0x41, + 0x14, 0xef, 0x48, 0x29, 0x76, 0x40, 0xd1, 0x0d, 0x09, 0x65, 0x83, 0x85, 0x54, 0x0f, 0x48, 0xc2, + 0x4e, 0x5a, 0x35, 0x24, 0x35, 0x1e, 0x04, 0x3c, 0x34, 0xa6, 0x49, 0xb3, 0x62, 0x42, 0xbc, 0x34, + 0xd3, 0xd9, 0xc9, 0x76, 0x64, 0x77, 0x66, 0xdd, 0x99, 0x5d, 0xe1, 0x66, 0xf4, 0x62, 0x3c, 0x18, + 0xbf, 0x80, 0x09, 0x1f, 0x81, 0x6f, 0x21, 0x47, 0x8e, 0x9e, 0x8c, 0x81, 0x03, 0x37, 0x3f, 0x83, + 0xd9, 0xbf, 0xad, 0x82, 0x04, 0x0b, 0xb7, 0xbe, 0xf7, 0xfa, 0xfb, 0xbd, 0xdf, 0xef, 0xcd, 0xdb, + 0x07, 0x1f, 0xb3, 0x1e, 0x41, 0xd8, 0xf3, 0x1c, 0x46, 0xb0, 0x62, 0x82, 0x4b, 0xc4, 0xb8, 0xa2, + 0x3e, 0xe9, 0x63, 0xc6, 0xbb, 0x98, 0x10, 0x11, 0x70, 0x25, 0x11, 0x11, 0x5c, 0xf9, 0xc2, 0x71, + 0xa8, 0x8f, 0xc2, 0x3a, 0x52, 0x3b, 0x86, 0xe7, 0x0b, 0x25, 0xb4, 0x06, 0xeb, 0x11, 0x63, 0x18, + 0x6c, 0x9c, 0x01, 0x36, 0x06, 0x60, 0x23, 0xac, 0xeb, 0x33, 0xb6, 0xb0, 0x45, 0x0c, 0x47, 0xd1, + 0xaf, 0x84, 0x49, 0x7f, 0x78, 0x21, 0x19, 0x61, 0x1d, 0x79, 0x98, 0x6c, 0x53, 0x95, 0xa2, 0xd6, + 0x47, 0x10, 0x3f, 0xa4, 0x26, 0x21, 0x99, 0x25, 0x42, 0xba, 0x42, 0x22, 0x57, 0xda, 0x51, 0xdd, + 0x95, 0x76, 0x52, 0xa8, 0x7d, 0x00, 0x70, 0xbe, 0x2d, 0x6d, 0x93, 0xda, 0x4c, 0x2a, 0xea, 0xb7, + 0x72, 0xea, 0xa7, 0x09, 0xb3, 0x36, 0x03, 0xc7, 0xc5, 0x5b, 0x4e, 0xfd, 0x0a, 0x58, 0x04, 0x4b, + 0x65, 0x33, 0x09, 0xb4, 0xbb, 0xf0, 0x06, 0x11, 0x9c, 0x53, 0x12, 0x29, 0xea, 0x32, 0xab, 0x72, + 0x2d, 0xae, 0x4e, 0x0d, 0x92, 0x2d, 0x4b, 0xab, 0xc0, 0x89, 0x90, 0xfa, 0x92, 0x09, 0x5e, 0x19, + 0x8b, 0xcb, 0x59, 0xd8, 0xbc, 0xf9, 0x71, 0x6f, 0xa1, 0xf0, 0xfe, 0x64, 0x7f, 0x39, 0xa1, 0xab, + 0x59, 0xf0, 0xde, 0x79, 0x22, 0x4c, 0x2a, 0x3d, 0xc1, 0x25, 0xd5, 0xee, 0x40, 0x48, 0xfa, 0x98, + 0x73, 0xea, 0x44, 0x3d, 0x13, 0x45, 0xe5, 0x34, 0xd3, 0xb2, 0xb4, 0x59, 0x38, 0xe1, 0x09, 0x5f, + 0x0d, 0xf4, 0x94, 0xa2, 0xb0, 0x65, 0x35, 0x8b, 0x51, 0xbf, 0xda, 0x2f, 0x00, 0xcb, 0x6d, 0x69, + 0xbf, 0xa0, 0xdc, 0xda, 0xdc, 0xb9, 0x8c, 0xb1, 0x6d, 0x38, 0x99, 0x3c, 0x51, 0xd7, 0xc2, 0x0a, + 0xc7, 0xe6, 0x26, 0x1b, 0x1b, 0xc6, 0x85, 0x16, 0x25, 0xac, 0x1b, 0xa7, 0xfc, 0x75, 0x62, 0xb2, + 0x0d, 0xac, 0xf0, 0x5a, 0xf1, 0xe0, 0xc7, 0x42, 0xc1, 0x84, 0x5e, 0x9e, 0xd1, 0xee, 0xc3, 0x5b, + 0x3e, 0x75, 0xb0, 0x62, 0x21, 0xed, 0x2a, 0xe6, 0x52, 0x11, 0xa8, 0x4a, 0x71, 0x11, 0x2c, 0x15, + 0xcd, 0xe9, 0x2c, 0xbf, 0x99, 0xa4, 0x4f, 0x8d, 0xf5, 0x11, 0xbc, 0x9d, 0xfb, 0xcd, 0x67, 0xa8, + 0xc3, 0xeb, 0x92, 0xbe, 0x09, 0x28, 0x27, 0x34, 0xb6, 0x5e, 0x34, 0xf3, 0x38, 0x9d, 0xd3, 0x57, + 0x00, 0xa7, 0xdb, 0xd2, 0x7e, 0xe9, 0x59, 0x58, 0xd1, 0x0e, 0xf6, 0xb1, 0x2b, 0xb5, 0x79, 0x58, + 0xc6, 0x81, 0xea, 0x0b, 0x9f, 0xa9, 0xdd, 0x6c, 0xf0, 0x79, 0x42, 0xdb, 0x82, 0x25, 0x2f, 0xfe, + 0x5f, 0x3c, 0xae, 0xc9, 0x46, 0xd3, 0xf8, 0xff, 0x8f, 0xc6, 0x48, 0x3a, 0xa5, 0x13, 0x48, 0xf9, + 0x9a, 0x5a, 0x66, 0x69, 0xd0, 0xad, 0x36, 0x07, 0x67, 0xff, 0x92, 0x97, 0x99, 0x6b, 0x7c, 0x2a, + 0xc2, 0xb1, 0xb6, 0xb4, 0xb5, 0x6f, 0x00, 0xce, 0xfd, 0x7b, 0xa7, 0x3b, 0xa3, 0xc8, 0x3b, 0x6f, + 0x41, 0xf5, 0xad, 0xab, 0x66, 0xcc, 0x9f, 0xeb, 0x33, 0x80, 0xa5, 0x74, 0x63, 0x9f, 0x8c, 0xd8, + 0x24, 0x81, 0xeb, 0xcf, 0x2e, 0x05, 0xcf, 0x05, 0xed, 0x01, 0x38, 0xf5, 0xc7, 0x6a, 0xac, 0x8f, + 0xc8, 0x3b, 0x4c, 0xa2, 0x3f, 0xbf, 0x02, 0x92, 0x4c, 0xa2, 0x3e, 0xfe, 0xee, 0x64, 0x7f, 0x19, + 0xac, 0xbd, 0x3e, 0x38, 0xaa, 0x82, 0xc3, 0xa3, 0x2a, 0xf8, 0x79, 0x54, 0x05, 0x5f, 0x8e, 0xab, + 0x85, 0xc3, 0xe3, 0x6a, 0xe1, 0xfb, 0x71, 0xb5, 0xf0, 0xaa, 0x63, 0x33, 0xd5, 0x0f, 0x7a, 0x06, + 0x11, 0x2e, 0x4a, 0x2f, 0x23, 0xeb, 0x91, 0x15, 0x5b, 0xa0, 0x70, 0x15, 0xb9, 0xc2, 0x0a, 0x1c, + 0x2a, 0xa3, 0x9b, 0x2b, 0x51, 0x63, 0x75, 0x65, 0xa0, 0x63, 0xe5, 0xac, 0x73, 0xab, 0x76, 0x3d, + 0x2a, 0x7b, 0xa5, 0xf8, 0x9c, 0x3e, 0xf8, 0x1d, 0x00, 0x00, 0xff, 0xff, 0xb5, 0xf7, 0xce, 0xb5, + 0x6b, 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/apps/27-interchain-accounts/host/types/tx.pb.go b/modules/apps/27-interchain-accounts/host/types/tx.pb.go index 021ee93d2ce..48fdff5812a 100644 --- a/modules/apps/27-interchain-accounts/host/types/tx.pb.go +++ b/modules/apps/27-interchain-accounts/host/types/tx.pb.go @@ -72,20 +72,6 @@ func (m *MsgUpdateParams) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateParams proto.InternalMessageInfo -func (m *MsgUpdateParams) GetAuthority() string { - if m != nil { - return m.Authority - } - return "" -} - -func (m *MsgUpdateParams) GetParams() Params { - if m != nil { - return m.Params - } - return Params{} -} - // MsgUpdateParamsResponse defines the response for Msg/UpdateParams type MsgUpdateParamsResponse struct { } @@ -133,7 +119,7 @@ func init() { } var fileDescriptor_fa437afde7f1e7ae = []byte{ - // 351 bytes of a gzipped FileDescriptorProto + // 355 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x32, 0xcd, 0x4c, 0x4a, 0xd6, 0x4f, 0x2c, 0x28, 0xc8, 0xc9, 0x4c, 0x4e, 0x2c, 0xc9, 0xcc, 0xcf, 0x2b, 0xd6, 0xcf, 0xcc, 0x2b, 0x49, 0x2d, 0x4a, 0xce, 0x48, 0xcc, 0xcc, 0x8b, 0x4f, 0x4c, 0x4e, 0xce, 0x2f, 0xcd, 0x2b, 0x29, @@ -141,21 +127,22 @@ var fileDescriptor_fa437afde7f1e7ae = []byte{ 0xc9, 0x17, 0xd2, 0xc9, 0x4c, 0x4a, 0xd6, 0x43, 0xd6, 0xa6, 0x87, 0x45, 0x9b, 0x1e, 0x48, 0x9b, 0x5e, 0x99, 0xa1, 0x94, 0x48, 0x7a, 0x7e, 0x7a, 0x3e, 0x58, 0xa3, 0x3e, 0x88, 0x05, 0x31, 0x43, 0x4a, 0x3c, 0x39, 0xbf, 0x38, 0x37, 0xbf, 0x58, 0x3f, 0xb7, 0x38, 0x1d, 0x64, 0x76, 0x6e, 0x71, - 0x3a, 0x54, 0xc2, 0x9c, 0x24, 0x37, 0x81, 0x2d, 0x01, 0x6b, 0x54, 0x9a, 0xcc, 0xc8, 0xc5, 0xef, + 0x3a, 0x54, 0xc2, 0x9c, 0x24, 0x37, 0x81, 0x2d, 0x01, 0x6b, 0x54, 0x9a, 0xce, 0xc8, 0xc5, 0xef, 0x5b, 0x9c, 0x1e, 0x5a, 0x90, 0x92, 0x58, 0x92, 0x1a, 0x90, 0x58, 0x94, 0x98, 0x5b, 0x2c, 0x24, 0xc3, 0xc5, 0x99, 0x58, 0x5a, 0x92, 0x91, 0x5f, 0x94, 0x59, 0x52, 0x29, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0x84, 0x10, 0x10, 0x0a, 0xe2, 0x62, 0x2b, 0x00, 0xab, 0x93, 0x60, 0x52, 0x60, 0xd4, 0xe0, 0x36, 0x32, 0xd1, 0x23, 0xc5, 0x63, 0x7a, 0x10, 0x3b, 0x9c, 0x58, 0x4e, 0xdc, 0x93, 0x67, - 0x08, 0x82, 0x9a, 0x64, 0xc5, 0xd7, 0xf4, 0x7c, 0x83, 0x16, 0xc2, 0x0e, 0x25, 0x49, 0x2e, 0x71, - 0x34, 0x47, 0x05, 0xa5, 0x16, 0x17, 0xe4, 0xe7, 0x15, 0xa7, 0x1a, 0x2d, 0x66, 0xe4, 0x62, 0xf6, - 0x2d, 0x4e, 0x17, 0x9a, 0xc2, 0xc8, 0xc5, 0x83, 0xe2, 0x6a, 0x5b, 0xd2, 0xdc, 0x81, 0x66, 0xbe, - 0x94, 0x2b, 0x45, 0xda, 0x61, 0xce, 0x93, 0x62, 0x6d, 0x78, 0xbe, 0x41, 0x8b, 0xd1, 0x29, 0xe5, - 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, - 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0xbc, 0xd2, 0x33, 0x4b, 0x32, 0x4a, - 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0xa1, 0xb1, 0x99, 0x99, 0x94, 0xac, 0x9b, 0x9e, 0xaf, 0x5f, - 0x66, 0xae, 0x9f, 0x9b, 0x9f, 0x52, 0x9a, 0x93, 0x5a, 0x0c, 0x8a, 0xc9, 0x62, 0x7d, 0x23, 0x73, - 0x5d, 0x84, 0x0b, 0x74, 0x51, 0x23, 0xb1, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x1c, 0x87, - 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x95, 0x56, 0xf9, 0x77, 0x92, 0x02, 0x00, 0x00, + 0x08, 0x82, 0x9a, 0x64, 0x25, 0xd4, 0xb1, 0x40, 0x9e, 0xa1, 0xe9, 0xf9, 0x06, 0x2d, 0x84, 0x3d, + 0x4a, 0x92, 0x5c, 0xe2, 0x68, 0x0e, 0x0b, 0x4a, 0x2d, 0x2e, 0xc8, 0xcf, 0x2b, 0x4e, 0x35, 0x5a, + 0xcc, 0xc8, 0xc5, 0xec, 0x5b, 0x9c, 0x2e, 0x34, 0x85, 0x91, 0x8b, 0x07, 0xc5, 0xe5, 0xb6, 0xa4, + 0xb9, 0x05, 0xcd, 0x7c, 0x29, 0x57, 0x8a, 0xb4, 0xc3, 0x9c, 0x27, 0xc5, 0xda, 0xf0, 0x7c, 0x83, + 0x16, 0xa3, 0x53, 0xca, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, + 0x38, 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x79, 0xa5, + 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x43, 0x63, 0x34, 0x33, 0x29, 0x59, + 0x37, 0x3d, 0x5f, 0xbf, 0xcc, 0x5c, 0x3f, 0x37, 0x3f, 0xa5, 0x34, 0x27, 0xb5, 0x18, 0x14, 0x9b, + 0xc5, 0xfa, 0x46, 0xe6, 0xba, 0x08, 0x17, 0xe8, 0xa2, 0x46, 0x64, 0x49, 0x65, 0x41, 0x6a, 0x71, + 0x12, 0x1b, 0x38, 0x1e, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xd9, 0x32, 0xfd, 0x69, 0x96, + 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/apps/29-fee/types/tx.pb.go b/modules/apps/29-fee/types/tx.pb.go index 7067a80cf2b..6c517752734 100644 --- a/modules/apps/29-fee/types/tx.pb.go +++ b/modules/apps/29-fee/types/tx.pb.go @@ -373,49 +373,49 @@ func init() { func init() { proto.RegisterFile("ibc/applications/fee/v1/tx.proto", fileDescriptor_05c93128649f1b96) } var fileDescriptor_05c93128649f1b96 = []byte{ - // 663 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0xcd, 0x6e, 0xd3, 0x40, - 0x10, 0x8e, 0x9b, 0xfe, 0x65, 0x5a, 0x28, 0x5d, 0x22, 0xe2, 0x5a, 0xad, 0x5b, 0xa2, 0x82, 0x4a, - 0xa5, 0xd8, 0x24, 0x50, 0x21, 0x2a, 0x21, 0x41, 0x2b, 0x15, 0xf5, 0x50, 0x11, 0xe5, 0xc8, 0xa5, - 0x72, 0xd6, 0x13, 0xd7, 0x90, 0x78, 0x2d, 0xaf, 0x13, 0xe1, 0x1b, 0xe2, 0xc4, 0xb1, 0xbc, 0x41, - 0x1f, 0xa1, 0x17, 0xde, 0xa1, 0xc7, 0x1e, 0x39, 0x21, 0x94, 0x1e, 0xca, 0x13, 0x70, 0x46, 0xb6, - 0xd7, 0xc6, 0x4d, 0xe5, 0x2a, 0x20, 0x71, 0xf3, 0xec, 0x7c, 0xf3, 0xcd, 0x7c, 0x9f, 0x67, 0x6d, - 0x58, 0xb3, 0xdb, 0x54, 0x37, 0x5c, 0xb7, 0x6b, 0x53, 0xc3, 0xb7, 0x99, 0xc3, 0xf5, 0x0e, 0xa2, - 0x3e, 0xa8, 0xeb, 0xfe, 0x07, 0xcd, 0xf5, 0x98, 0xcf, 0x48, 0xc5, 0x6e, 0x53, 0x2d, 0x8b, 0xd0, - 0x3a, 0x88, 0xda, 0xa0, 0xae, 0x94, 0x2d, 0x66, 0xb1, 0x08, 0xa3, 0x87, 0x4f, 0x31, 0x5c, 0xb9, - 0x9f, 0x47, 0x18, 0x56, 0x65, 0x20, 0x94, 0x79, 0xa8, 0xd3, 0x23, 0xc3, 0x71, 0xb0, 0x1b, 0xa6, - 0xc5, 0xa3, 0x80, 0x54, 0x28, 0xe3, 0x3d, 0xc6, 0xf5, 0x1e, 0xb7, 0xc2, 0x64, 0x8f, 0x5b, 0x71, - 0xa2, 0x7a, 0x2c, 0xc1, 0x9d, 0x03, 0x6e, 0xb5, 0xd0, 0xb2, 0xb9, 0x8f, 0x5e, 0xd3, 0x08, 0x10, - 0x49, 0x05, 0x66, 0x5c, 0xe6, 0xf9, 0x87, 0xb6, 0x29, 0x4b, 0x6b, 0xd2, 0x46, 0xa9, 0x35, 0x1d, - 0x86, 0xfb, 0x26, 0x59, 0x01, 0x10, 0xbc, 0x61, 0x6e, 0x22, 0xca, 0x95, 0xc4, 0xc9, 0xbe, 0x49, - 0x64, 0x98, 0xf1, 0xb0, 0x6b, 0x04, 0xe8, 0xc9, 0xc5, 0x28, 0x97, 0x84, 0xa4, 0x0c, 0x53, 0x6e, - 0x48, 0x2d, 0x4f, 0x46, 0xe7, 0x71, 0xb0, 0x5d, 0xfe, 0x7c, 0xb2, 0x5a, 0xf8, 0x79, 0xb2, 0x5a, - 0xf8, 0x74, 0x79, 0xba, 0x99, 0x60, 0xab, 0x0a, 0xc8, 0xa3, 0x13, 0xb5, 0x90, 0xbb, 0xcc, 0xe1, - 0x58, 0xfd, 0x2a, 0xc1, 0x72, 0x26, 0xb9, 0xcb, 0xfa, 0x8e, 0x8f, 0x9e, 0x6b, 0x78, 0x7e, 0xf0, - 0xbf, 0x46, 0xaf, 0x01, 0xa1, 0x99, 0x36, 0x87, 0x59, 0x1d, 0x8b, 0x74, 0x74, 0x80, 0x1c, 0x4d, - 0x0f, 0x61, 0xfd, 0xa6, 0xb1, 0x53, 0x7d, 0x43, 0x09, 0x16, 0x0e, 0xb8, 0xd5, 0x34, 0x82, 0xa6, - 0x41, 0xdf, 0xa3, 0xbf, 0x87, 0x48, 0x9e, 0x42, 0xb1, 0x83, 0x18, 0xc9, 0x99, 0x6b, 0x2c, 0x6b, - 0x39, 0xeb, 0xa3, 0xed, 0x21, 0xee, 0x4c, 0x9e, 0x7d, 0x5f, 0x2d, 0xb4, 0x42, 0x38, 0x59, 0x87, - 0xdb, 0x9c, 0xf5, 0x3d, 0x8a, 0x87, 0x89, 0x1f, 0xb1, 0xe6, 0xf9, 0xf8, 0xb4, 0x19, 0xbb, 0xb2, - 0x09, 0x8b, 0x02, 0x95, 0x31, 0x27, 0x36, 0x60, 0x21, 0x4e, 0xec, 0xa6, 0x16, 0xdd, 0x83, 0x69, - 0x6e, 0x5b, 0x0e, 0x7a, 0x42, 0xbc, 0x88, 0x88, 0x02, 0xb3, 0x42, 0x26, 0x97, 0xa7, 0xd6, 0x8a, - 0x1b, 0xa5, 0x56, 0x1a, 0x6f, 0xdf, 0xcd, 0xba, 0x21, 0x0a, 0xaa, 0x4b, 0x50, 0x19, 0xd1, 0x98, - 0xea, 0x3f, 0x93, 0xa0, 0x3c, 0x92, 0x7b, 0xc5, 0x03, 0x87, 0x92, 0x97, 0x50, 0x72, 0xa3, 0x93, - 0xe4, 0xcd, 0xce, 0x35, 0x56, 0x22, 0x2b, 0xc2, 0xbd, 0xd7, 0x92, 0x65, 0x1f, 0xd4, 0xb5, 0xb8, - 0x6e, 0xdf, 0x14, 0x5e, 0xcc, 0xba, 0x22, 0x26, 0xaf, 0x01, 0x04, 0x43, 0xe8, 0xe6, 0x44, 0x44, - 0x51, 0xcd, 0x75, 0x33, 0x6d, 0x2f, 0x78, 0x44, 0xf7, 0x3d, 0xc4, 0xed, 0x07, 0x59, 0x4d, 0xf2, - 0x1f, 0x4e, 0xcd, 0xc3, 0x4e, 0xdf, 0x31, 0x0d, 0xd3, 0xf4, 0x90, 0xf3, 0xaa, 0x1a, 0x6d, 0xea, - 0x35, 0x25, 0x89, 0xd4, 0xc6, 0xaf, 0x22, 0x14, 0x0f, 0xb8, 0x45, 0x7a, 0x70, 0xeb, 0xea, 0xed, - 0x7b, 0x94, 0x3b, 0xd4, 0xe8, 0xb5, 0x50, 0xea, 0x63, 0x43, 0x93, 0xb6, 0xe4, 0x8b, 0x04, 0x4b, - 0xf9, 0xd7, 0x67, 0x6b, 0x1c, 0xc2, 0x6b, 0x65, 0xca, 0x8b, 0x7f, 0x2a, 0x4b, 0x67, 0x7a, 0x07, - 0xf3, 0x57, 0x36, 0x7e, 0xe3, 0x26, 0xba, 0x2c, 0x52, 0x79, 0x3c, 0x2e, 0x32, 0xed, 0x15, 0xc0, - 0xe2, 0xf5, 0xed, 0xaa, 0x8d, 0x4b, 0x13, 0xc1, 0x95, 0xad, 0xbf, 0x82, 0x27, 0xad, 0x95, 0xa9, - 0x8f, 0x97, 0xa7, 0x9b, 0xd2, 0xce, 0x9b, 0xb3, 0xa1, 0x2a, 0x9d, 0x0f, 0x55, 0xe9, 0xc7, 0x50, - 0x95, 0x8e, 0x2f, 0xd4, 0xc2, 0xf9, 0x85, 0x5a, 0xf8, 0x76, 0xa1, 0x16, 0xde, 0x6e, 0x59, 0xb6, - 0x7f, 0xd4, 0x6f, 0x6b, 0x94, 0xf5, 0x74, 0xf1, 0xc1, 0xb6, 0xdb, 0xb4, 0x66, 0x31, 0x7d, 0xf0, - 0x4c, 0xef, 0x31, 0xb3, 0xdf, 0x45, 0x1e, 0xfe, 0x0b, 0xb8, 0xde, 0x78, 0x5e, 0x0b, 0x7f, 0x03, - 0x7e, 0xe0, 0x22, 0x6f, 0x4f, 0x47, 0x9f, 0xf2, 0x27, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0xa4, - 0xad, 0x40, 0x2c, 0x7c, 0x06, 0x00, 0x00, + // 661 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x54, 0xcf, 0x4e, 0xdb, 0x4e, + 0x10, 0x8e, 0x09, 0xff, 0x32, 0xf0, 0xfb, 0x01, 0x2b, 0xd4, 0x18, 0x0b, 0x0c, 0x44, 0xa8, 0xa2, + 0x48, 0xb1, 0x9b, 0xb4, 0xa8, 0x2a, 0x52, 0xa5, 0x16, 0x24, 0x2a, 0x0e, 0xa8, 0x51, 0x8e, 0xbd, + 0x20, 0x67, 0x3d, 0x31, 0x6e, 0x13, 0xaf, 0xe5, 0x75, 0xa2, 0xfa, 0x56, 0xf5, 0xd4, 0x43, 0x0f, + 0xed, 0x1b, 0xf4, 0x11, 0xe8, 0x3b, 0xf4, 0xc0, 0x91, 0x63, 0x4f, 0xa8, 0x82, 0x03, 0x6f, 0xd0, + 0x73, 0xb5, 0xf6, 0xda, 0x35, 0xa1, 0x41, 0x69, 0xa5, 0xde, 0x3c, 0x3b, 0xdf, 0x7e, 0x33, 0xdf, + 0xe7, 0xd9, 0x81, 0x35, 0xb7, 0x45, 0x4d, 0xcb, 0xf7, 0x3b, 0x2e, 0xb5, 0x42, 0x97, 0x79, 0xdc, + 0x6c, 0x23, 0x9a, 0xfd, 0x9a, 0x19, 0xbe, 0x31, 0xfc, 0x80, 0x85, 0x8c, 0x94, 0xdd, 0x16, 0x35, + 0xf2, 0x08, 0xa3, 0x8d, 0x68, 0xf4, 0x6b, 0xda, 0xa2, 0xc3, 0x1c, 0x16, 0x63, 0x4c, 0xf1, 0x95, + 0xc0, 0xb5, 0xf5, 0x61, 0x84, 0xe2, 0x56, 0x0e, 0x42, 0x59, 0x80, 0x26, 0x3d, 0xb6, 0x3c, 0x0f, + 0x3b, 0x22, 0x2d, 0x3f, 0x25, 0xa4, 0x4c, 0x19, 0xef, 0x32, 0x6e, 0x76, 0xb9, 0x23, 0x92, 0x5d, + 0xee, 0x24, 0x89, 0xca, 0x07, 0x05, 0xe6, 0x0f, 0xb9, 0xd3, 0x44, 0xc7, 0xe5, 0x21, 0x06, 0x0d, + 0x2b, 0x42, 0x24, 0x65, 0x98, 0xf2, 0x59, 0x10, 0x1e, 0xb9, 0xb6, 0xaa, 0xac, 0x29, 0x9b, 0xa5, + 0xe6, 0xa4, 0x08, 0x0f, 0x6c, 0xb2, 0x02, 0x20, 0x79, 0x45, 0x6e, 0x2c, 0xce, 0x95, 0xe4, 0xc9, + 0x81, 0x4d, 0x54, 0x98, 0x0a, 0xb0, 0x63, 0x45, 0x18, 0xa8, 0xc5, 0x38, 0x97, 0x86, 0x64, 0x11, + 0x26, 0x7c, 0x41, 0xad, 0x8e, 0xc7, 0xe7, 0x49, 0xb0, 0x33, 0xff, 0xfe, 0xf3, 0x6a, 0xe1, 0xdd, + 0xd5, 0xc9, 0x56, 0x8a, 0xab, 0x68, 0xa0, 0x0e, 0x76, 0xd3, 0x44, 0xee, 0x33, 0x8f, 0x63, 0xe5, + 0x8b, 0x02, 0xcb, 0xb9, 0xe4, 0x1e, 0xeb, 0x79, 0x21, 0x06, 0xbe, 0x15, 0x84, 0xd1, 0xbf, 0x6a, + 0xbb, 0x0a, 0x84, 0xe6, 0xca, 0x1c, 0xe5, 0x35, 0x2c, 0xd0, 0xc1, 0x06, 0x7e, 0xa3, 0xe7, 0x2e, + 0x6c, 0xdc, 0xd6, 0x72, 0xa6, 0xed, 0x5c, 0x81, 0xb9, 0x43, 0xee, 0x34, 0xac, 0xa8, 0x61, 0xd1, + 0xd7, 0x18, 0xee, 0x23, 0x92, 0x87, 0x50, 0x6c, 0x23, 0xc6, 0x52, 0x66, 0xea, 0xcb, 0xc6, 0x90, + 0xb1, 0x31, 0xf6, 0x11, 0x77, 0xc7, 0x4f, 0xcf, 0x57, 0x0b, 0x4d, 0x01, 0x27, 0x1b, 0xf0, 0x3f, + 0x67, 0xbd, 0x80, 0xe2, 0x51, 0xea, 0x45, 0xa2, 0x77, 0x36, 0x39, 0x6d, 0x24, 0x8e, 0x6c, 0xc1, + 0x82, 0x44, 0xe5, 0x8c, 0x49, 0xc4, 0xcf, 0x25, 0x89, 0xbd, 0xcc, 0x9e, 0x3b, 0x30, 0xc9, 0x5d, + 0xc7, 0xc3, 0x40, 0x0a, 0x97, 0x11, 0xd1, 0x60, 0x5a, 0xca, 0xe4, 0xea, 0xc4, 0x5a, 0x71, 0xb3, + 0xd4, 0xcc, 0xe2, 0x9d, 0xb9, 0xd4, 0x09, 0x09, 0xae, 0x2c, 0x41, 0x79, 0x40, 0x5f, 0xa6, 0xfd, + 0xab, 0x02, 0x8b, 0x03, 0xb9, 0x67, 0x3c, 0xf2, 0x28, 0x79, 0x0a, 0x25, 0x3f, 0x3e, 0x49, 0xff, + 0xe8, 0x4c, 0x7d, 0x25, 0xb6, 0x41, 0xcc, 0xba, 0x91, 0x0e, 0x78, 0xbf, 0x66, 0x24, 0xf7, 0x0e, + 0x6c, 0xe9, 0xc3, 0xb4, 0x2f, 0x63, 0xf2, 0x1c, 0x40, 0x32, 0x08, 0x27, 0xc7, 0x62, 0x8a, 0xca, + 0x50, 0x27, 0xb3, 0xf2, 0x92, 0x47, 0x56, 0xdf, 0x47, 0xdc, 0x59, 0x4f, 0xf5, 0xa8, 0xbf, 0xf8, + 0x8c, 0x00, 0xdb, 0x3d, 0xcf, 0xb6, 0x6c, 0x3b, 0x40, 0xce, 0x2b, 0x7a, 0x3c, 0x9d, 0x37, 0x54, + 0xa4, 0x32, 0xeb, 0x3f, 0x8a, 0x50, 0x3c, 0xe4, 0x0e, 0xe9, 0xc2, 0x7f, 0xd7, 0x5f, 0xdb, 0xbd, + 0xa1, 0x0d, 0x0d, 0x3e, 0x05, 0xad, 0x36, 0x32, 0x34, 0x2d, 0x4b, 0x3e, 0x29, 0xb0, 0x34, 0xfc, + 0xc9, 0x6c, 0x8f, 0x42, 0x78, 0xe3, 0x9a, 0xf6, 0xe4, 0xaf, 0xae, 0x65, 0x3d, 0xbd, 0x82, 0xd9, + 0x6b, 0x93, 0xbe, 0x79, 0x1b, 0x5d, 0x1e, 0xa9, 0xdd, 0x1f, 0x15, 0x99, 0xd5, 0x8a, 0x60, 0xe1, + 0xe6, 0x64, 0x55, 0x47, 0xa5, 0x89, 0xe1, 0xda, 0xf6, 0x1f, 0xc1, 0xd3, 0xd2, 0xda, 0xc4, 0xdb, + 0xab, 0x93, 0x2d, 0x65, 0xf7, 0xc5, 0xe9, 0x85, 0xae, 0x9c, 0x5d, 0xe8, 0xca, 0xf7, 0x0b, 0x5d, + 0xf9, 0x78, 0xa9, 0x17, 0xce, 0x2e, 0xf5, 0xc2, 0xb7, 0x4b, 0xbd, 0xf0, 0x72, 0xdb, 0x71, 0xc3, + 0xe3, 0x5e, 0xcb, 0xa0, 0xac, 0x6b, 0xca, 0x05, 0xed, 0xb6, 0x68, 0xd5, 0x61, 0x66, 0xff, 0x91, + 0xd9, 0x65, 0x76, 0xaf, 0x83, 0x5c, 0xec, 0x7e, 0x6e, 0xd6, 0x1f, 0x57, 0xc5, 0xda, 0x0f, 0x23, + 0x1f, 0x79, 0x6b, 0x32, 0x5e, 0xdd, 0x0f, 0x7e, 0x06, 0x00, 0x00, 0xff, 0xff, 0x07, 0x0e, 0x63, + 0x53, 0x6c, 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/apps/transfer/types/tx.pb.go b/modules/apps/transfer/types/tx.pb.go index 4b610121694..95069745f2c 100644 --- a/modules/apps/transfer/types/tx.pb.go +++ b/modules/apps/transfer/types/tx.pb.go @@ -127,13 +127,6 @@ func (m *MsgTransferResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgTransferResponse proto.InternalMessageInfo -func (m *MsgTransferResponse) GetSequence() uint64 { - if m != nil { - return m.Sequence - } - return 0 -} - // MsgUpdateParams is the Msg/UpdateParams request type. type MsgUpdateParams struct { // authority is the address that controls the module (defaults to x/gov unless overwritten). @@ -177,20 +170,6 @@ func (m *MsgUpdateParams) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateParams proto.InternalMessageInfo -func (m *MsgUpdateParams) GetAuthority() string { - if m != nil { - return m.Authority - } - return "" -} - -func (m *MsgUpdateParams) GetParams() Params { - if m != nil { - return m.Params - } - return Params{} -} - // MsgUpdateParamsResponse defines the response structure for executing a // MsgUpdateParams message. type MsgUpdateParamsResponse struct { @@ -243,42 +222,42 @@ func init() { var fileDescriptor_7401ed9bed2f8e09 = []byte{ // 589 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x53, 0x41, 0x4f, 0xd4, 0x40, - 0x14, 0xde, 0xc2, 0xb2, 0xc2, 0xac, 0xa0, 0x0e, 0x46, 0x4a, 0x43, 0xba, 0x64, 0x23, 0x09, 0x42, + 0x14, 0xde, 0xc2, 0xb2, 0xc2, 0xac, 0x80, 0x8e, 0x46, 0x4a, 0x43, 0xba, 0x64, 0x23, 0x09, 0x42, 0x98, 0x49, 0x31, 0x84, 0x84, 0x23, 0x1c, 0xf4, 0x42, 0x82, 0x1b, 0xbc, 0x78, 0x21, 0xed, 0xf0, - 0x6c, 0x27, 0x6e, 0x3b, 0x75, 0x66, 0xda, 0xc8, 0xcd, 0xe8, 0xc5, 0xa3, 0x3f, 0x81, 0x9f, 0xc0, - 0xcf, 0xe0, 0xc8, 0xd1, 0x93, 0x1a, 0x38, 0xe0, 0xc1, 0x1f, 0x61, 0x3a, 0x9d, 0x2e, 0xab, 0x07, - 0xd4, 0x53, 0x67, 0xbe, 0xf7, 0xbd, 0xf7, 0xbe, 0xf7, 0x4d, 0x1f, 0x5a, 0xe1, 0x11, 0xa3, 0x61, - 0x9e, 0x0f, 0x39, 0x0b, 0x35, 0x17, 0x99, 0xa2, 0x5a, 0x86, 0x99, 0x7a, 0x0d, 0x92, 0x96, 0x01, - 0xd5, 0xef, 0x48, 0x2e, 0x85, 0x16, 0x78, 0x89, 0x47, 0x8c, 0x8c, 0xd3, 0x48, 0x43, 0x23, 0x65, - 0xe0, 0x3d, 0x8c, 0x45, 0x2c, 0x0c, 0x91, 0x56, 0xa7, 0x3a, 0xc7, 0x5b, 0x60, 0x42, 0xa5, 0x42, - 0xd1, 0x54, 0xc5, 0x55, 0xad, 0x54, 0xc5, 0x36, 0xe0, 0xdb, 0x40, 0x14, 0x2a, 0xa0, 0x65, 0x10, - 0x81, 0x0e, 0x03, 0xca, 0x04, 0xcf, 0x6c, 0xbc, 0x57, 0x69, 0x62, 0x42, 0x02, 0x65, 0x43, 0x0e, - 0x99, 0xae, 0xb2, 0xeb, 0x93, 0x25, 0xac, 0xdf, 0x2e, 0xba, 0x51, 0x66, 0xc8, 0xfd, 0x6f, 0x13, - 0xa8, 0xbb, 0xaf, 0xe2, 0x43, 0x8b, 0xe2, 0x1e, 0xea, 0x2a, 0x51, 0x48, 0x06, 0x47, 0xb9, 0x90, - 0xda, 0x75, 0x96, 0x9d, 0xd5, 0x99, 0x01, 0xaa, 0xa1, 0x03, 0x21, 0x35, 0x5e, 0x41, 0x73, 0x96, - 0xc0, 0x92, 0x30, 0xcb, 0x60, 0xe8, 0x4e, 0x18, 0xce, 0x6c, 0x8d, 0xee, 0xd5, 0x20, 0xde, 0x42, - 0x53, 0x5a, 0xbc, 0x81, 0xcc, 0x9d, 0x5c, 0x76, 0x56, 0xbb, 0x9b, 0x8b, 0xa4, 0x9e, 0x8a, 0x54, - 0x53, 0x11, 0x3b, 0x15, 0xd9, 0x13, 0x3c, 0xdb, 0x6d, 0x9f, 0x7f, 0xed, 0xb5, 0x06, 0x35, 0x1b, - 0x3f, 0x42, 0x1d, 0x05, 0xd9, 0x31, 0x48, 0xb7, 0x6d, 0xaa, 0xda, 0x1b, 0xf6, 0xd0, 0xb4, 0x04, - 0x06, 0xbc, 0x04, 0xe9, 0x4e, 0x99, 0xc8, 0xe8, 0x8e, 0x9f, 0xa1, 0x39, 0xcd, 0x53, 0x10, 0x85, - 0x3e, 0x4a, 0x80, 0xc7, 0x89, 0x76, 0x3b, 0xa6, 0xa7, 0x47, 0xaa, 0x67, 0xa9, 0x9c, 0x22, 0xd6, - 0x9f, 0x32, 0x20, 0xcf, 0x0d, 0xc3, 0x36, 0x9d, 0xb5, 0x79, 0x35, 0x88, 0xd7, 0xd1, 0x83, 0xa6, - 0x50, 0xf5, 0x55, 0x3a, 0x4c, 0x73, 0xf7, 0xce, 0xb2, 0xb3, 0xda, 0x1e, 0xdc, 0xb7, 0x81, 0xc3, - 0x06, 0xc7, 0x18, 0xb5, 0x53, 0x48, 0x85, 0x3b, 0x6d, 0xd4, 0x98, 0xf3, 0xce, 0xfc, 0xa7, 0xd3, - 0x5e, 0xeb, 0xc7, 0x69, 0xaf, 0xf5, 0xe1, 0xfa, 0x6c, 0xcd, 0x4a, 0xef, 0x07, 0x68, 0x7e, 0xcc, - 0xe0, 0x01, 0xa8, 0x5c, 0x64, 0x0a, 0xaa, 0x89, 0x14, 0xbc, 0x2d, 0x20, 0x63, 0x60, 0x5c, 0x6e, - 0x0f, 0x46, 0xf7, 0xfe, 0x47, 0x07, 0xdd, 0xdb, 0x57, 0xf1, 0xcb, 0xfc, 0x38, 0xd4, 0x70, 0x10, - 0xca, 0x30, 0x55, 0x78, 0x09, 0xcd, 0x84, 0x85, 0x4e, 0x84, 0xe4, 0xfa, 0xc4, 0x3e, 0xcb, 0x0d, - 0x80, 0x77, 0x51, 0x27, 0x37, 0x3c, 0xf3, 0x1a, 0xdd, 0xcd, 0xc7, 0xe4, 0xb6, 0x5f, 0x92, 0xd4, - 0x35, 0xad, 0x0b, 0x36, 0x73, 0x67, 0xae, 0x52, 0x7d, 0x53, 0xb3, 0xbf, 0x88, 0x16, 0xfe, 0x10, - 0xd1, 0x88, 0xdf, 0xfc, 0xe9, 0xa0, 0xc9, 0x7d, 0x15, 0xe3, 0x04, 0x4d, 0x8f, 0xfe, 0x9c, 0x27, - 0xb7, 0xb7, 0x1c, 0xf3, 0xc0, 0x0b, 0xfe, 0x99, 0x3a, 0xb2, 0x4b, 0xa3, 0xbb, 0xbf, 0xd9, 0xb1, - 0xf1, 0xd7, 0x12, 0xe3, 0x74, 0x6f, 0xeb, 0xbf, 0xe8, 0x4d, 0x57, 0x6f, 0xea, 0xfd, 0xf5, 0xd9, - 0x9a, 0xb3, 0xfb, 0xe2, 0xfc, 0xd2, 0x77, 0x2e, 0x2e, 0x7d, 0xe7, 0xfb, 0xa5, 0xef, 0x7c, 0xbe, - 0xf2, 0x5b, 0x17, 0x57, 0x7e, 0xeb, 0xcb, 0x95, 0xdf, 0x7a, 0xb5, 0x1d, 0x73, 0x9d, 0x14, 0x11, - 0x61, 0x22, 0xa5, 0x76, 0x6f, 0x79, 0xc4, 0x36, 0x62, 0x41, 0xcb, 0x6d, 0x9a, 0x8a, 0xe3, 0x62, - 0x08, 0xaa, 0xda, 0xc5, 0xb1, 0x1d, 0xd4, 0x27, 0x39, 0xa8, 0xa8, 0x63, 0xd6, 0xef, 0xe9, 0xaf, - 0x00, 0x00, 0x00, 0xff, 0xff, 0x4f, 0x13, 0x85, 0x07, 0x62, 0x04, 0x00, 0x00, + 0x6c, 0x27, 0x6e, 0x3b, 0x75, 0x66, 0xda, 0xc8, 0xcd, 0x78, 0xd1, 0xa3, 0x3f, 0xc1, 0x9f, 0xc0, + 0xcf, 0xe0, 0xc8, 0xd1, 0xc4, 0xc4, 0x18, 0x38, 0x70, 0xf1, 0x47, 0x98, 0x4e, 0xa7, 0xcb, 0xea, + 0x61, 0xd5, 0x53, 0x67, 0xde, 0xfb, 0xde, 0xf7, 0xbe, 0xf7, 0x4d, 0x1f, 0x5a, 0xe3, 0x11, 0xa3, + 0x61, 0x9e, 0x0f, 0x39, 0x0b, 0x35, 0x17, 0x99, 0xa2, 0x5a, 0x86, 0x99, 0x7a, 0x0d, 0x92, 0x96, + 0x01, 0xd5, 0xef, 0x48, 0x2e, 0x85, 0x16, 0x78, 0x85, 0x47, 0x8c, 0x8c, 0xc3, 0x48, 0x03, 0x23, + 0x65, 0xe0, 0x3d, 0x8c, 0x45, 0x2c, 0x0c, 0x90, 0x56, 0xa7, 0xba, 0xc6, 0x5b, 0x62, 0x42, 0xa5, + 0x42, 0xd1, 0x54, 0xc5, 0x15, 0x57, 0xaa, 0x62, 0x9b, 0xf0, 0x6d, 0x22, 0x0a, 0x15, 0xd0, 0x32, + 0x88, 0x40, 0x87, 0x01, 0x65, 0x82, 0x67, 0x36, 0xdf, 0xab, 0x34, 0x31, 0x21, 0x81, 0xb2, 0x21, + 0x87, 0x4c, 0x57, 0xd5, 0xf5, 0xc9, 0x02, 0x36, 0x27, 0x8b, 0x6e, 0x94, 0x19, 0x70, 0xff, 0xdb, + 0x14, 0xea, 0x1e, 0xaa, 0xf8, 0xd8, 0x46, 0x71, 0x0f, 0x75, 0x95, 0x28, 0x24, 0x83, 0x93, 0x5c, + 0x48, 0xed, 0x3a, 0xab, 0xce, 0xfa, 0xdc, 0x00, 0xd5, 0xa1, 0x23, 0x21, 0x35, 0x5e, 0x43, 0x0b, + 0x16, 0xc0, 0x92, 0x30, 0xcb, 0x60, 0xe8, 0x4e, 0x19, 0xcc, 0x7c, 0x1d, 0x3d, 0xa8, 0x83, 0x78, + 0x07, 0xcd, 0x68, 0xf1, 0x06, 0x32, 0x77, 0x7a, 0xd5, 0x59, 0xef, 0x6e, 0x2f, 0x93, 0x7a, 0x2a, + 0x52, 0x4d, 0x45, 0xec, 0x54, 0xe4, 0x40, 0xf0, 0x6c, 0xbf, 0x7d, 0xf1, 0xbd, 0xd7, 0x1a, 0xd4, + 0x68, 0xfc, 0x08, 0x75, 0x14, 0x64, 0xa7, 0x20, 0xdd, 0xb6, 0x61, 0xb5, 0x37, 0xec, 0xa1, 0x59, + 0x09, 0x0c, 0x78, 0x09, 0xd2, 0x9d, 0x31, 0x99, 0xd1, 0x1d, 0x3f, 0x43, 0x0b, 0x9a, 0xa7, 0x20, + 0x0a, 0x7d, 0x92, 0x00, 0x8f, 0x13, 0xed, 0x76, 0x4c, 0x4f, 0x8f, 0x54, 0xcf, 0x52, 0x39, 0x45, + 0xac, 0x3f, 0x65, 0x40, 0x9e, 0x1b, 0x84, 0x6d, 0x3a, 0x6f, 0xeb, 0xea, 0x20, 0xde, 0x44, 0xf7, + 0x1b, 0xa2, 0xea, 0xab, 0x74, 0x98, 0xe6, 0xee, 0x9d, 0x55, 0x67, 0xbd, 0x3d, 0xb8, 0x67, 0x13, + 0xc7, 0x4d, 0x1c, 0x63, 0xd4, 0x4e, 0x21, 0x15, 0xee, 0xac, 0x51, 0x63, 0xce, 0x7b, 0x8b, 0x9f, + 0xbe, 0xf4, 0x5a, 0x1f, 0x6e, 0xce, 0x37, 0xac, 0xec, 0xfe, 0x2e, 0x7a, 0x30, 0x66, 0xee, 0x00, + 0x54, 0x2e, 0x32, 0x05, 0xd5, 0x34, 0x0a, 0xde, 0x16, 0x90, 0x31, 0x30, 0x0e, 0xb7, 0x07, 0xa3, + 0xfb, 0x5e, 0xbb, 0xe2, 0xe8, 0x7f, 0x74, 0xd0, 0xe2, 0xa1, 0x8a, 0x5f, 0xe6, 0xa7, 0xa1, 0x86, + 0xa3, 0x50, 0x86, 0xa9, 0xc2, 0x2b, 0x68, 0x2e, 0x2c, 0x74, 0x22, 0x24, 0xd7, 0x67, 0xf6, 0x61, + 0x6e, 0x03, 0x78, 0x1f, 0x75, 0x72, 0x83, 0x33, 0xef, 0xd1, 0xdd, 0x7e, 0x4c, 0x26, 0xfd, 0x94, + 0xa4, 0xe6, 0xb4, 0x3e, 0xd8, 0xca, 0x3d, 0xdc, 0xe8, 0xbf, 0xe5, 0xed, 0x2f, 0xa3, 0xa5, 0x3f, + 0x84, 0x34, 0x63, 0x6c, 0xff, 0x74, 0xd0, 0xf4, 0xa1, 0x8a, 0x71, 0x82, 0x66, 0x47, 0xff, 0xcf, + 0x93, 0xc9, 0x6d, 0xc7, 0xdc, 0xf0, 0x82, 0x7f, 0x86, 0x8e, 0x8c, 0xd3, 0xe8, 0xee, 0x6f, 0x96, + 0x6c, 0xfd, 0x95, 0x62, 0x1c, 0xee, 0xed, 0xfc, 0x17, 0xbc, 0xe9, 0xea, 0xcd, 0xbc, 0xbf, 0x39, + 0xdf, 0x70, 0xf6, 0x5f, 0x5c, 0x5c, 0xf9, 0xce, 0xe5, 0x95, 0xef, 0xfc, 0xb8, 0xf2, 0x9d, 0xcf, + 0xd7, 0x7e, 0xeb, 0xf2, 0xda, 0x6f, 0x7d, 0xbd, 0xf6, 0x5b, 0xaf, 0x76, 0x63, 0xae, 0x93, 0x22, + 0x22, 0x4c, 0xa4, 0xd4, 0x6e, 0x2f, 0x8f, 0xd8, 0x56, 0x2c, 0x68, 0xb9, 0x4b, 0x53, 0x71, 0x5a, + 0x0c, 0x41, 0x55, 0x1b, 0x39, 0xb6, 0x89, 0xfa, 0x2c, 0x07, 0x15, 0x75, 0xcc, 0x12, 0x3e, 0xfd, + 0x15, 0x00, 0x00, 0xff, 0xff, 0xc4, 0x2f, 0xbe, 0x20, 0x68, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/core/02-client/types/tx.pb.go b/modules/core/02-client/types/tx.pb.go index 76a8cb9721a..b7bda73776a 100644 --- a/modules/core/02-client/types/tx.pb.go +++ b/modules/core/02-client/types/tx.pb.go @@ -408,20 +408,6 @@ func (m *MsgUpdateParams) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateParams proto.InternalMessageInfo -func (m *MsgUpdateParams) GetAuthority() string { - if m != nil { - return m.Authority - } - return "" -} - -func (m *MsgUpdateParams) GetParams() Params { - if m != nil { - return m.Params - } - return Params{} -} - // MsgUpdateParamsResponse defines the MsgUpdateParams response type. type MsgUpdateParamsResponse struct { } @@ -475,49 +461,49 @@ func init() { func init() { proto.RegisterFile("ibc/core/client/v1/tx.proto", fileDescriptor_cb5dc4651eb49a04) } var fileDescriptor_cb5dc4651eb49a04 = []byte{ - // 660 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x95, 0xbf, 0x6f, 0xd3, 0x40, - 0x14, 0xc7, 0xed, 0xfe, 0x88, 0xc8, 0x35, 0x6d, 0xd1, 0xd1, 0xd2, 0xd4, 0xa5, 0x4e, 0x15, 0x18, - 0x4a, 0xa1, 0x76, 0x5b, 0x86, 0x56, 0x45, 0x0c, 0x6d, 0x27, 0x86, 0x48, 0xc8, 0x15, 0x0b, 0x4b, - 0xb1, 0x9d, 0xcb, 0xc5, 0x52, 0xec, 0xb3, 0x7c, 0x76, 0x44, 0x36, 0xc4, 0xc4, 0x08, 0x1b, 0x0b, - 0x52, 0xff, 0x84, 0x4e, 0xfc, 0x0d, 0x65, 0xeb, 0xc8, 0x84, 0x50, 0x32, 0x94, 0x3f, 0x03, 0xd9, - 0x77, 0x71, 0x6c, 0xd7, 0x4e, 0x03, 0x6c, 0xf6, 0xbd, 0xcf, 0xbb, 0xef, 0xf7, 0x3d, 0xbf, 0xf3, - 0x81, 0x35, 0xcb, 0x30, 0x55, 0x93, 0x78, 0x48, 0x35, 0x3b, 0x16, 0x72, 0x7c, 0xb5, 0xbb, 0xab, - 0xfa, 0xef, 0x14, 0xd7, 0x23, 0x3e, 0x81, 0xd0, 0x32, 0x4c, 0x25, 0x0c, 0x2a, 0x2c, 0xa8, 0x74, - 0x77, 0xa5, 0x15, 0x93, 0x50, 0x9b, 0x50, 0xd5, 0xa6, 0x38, 0x64, 0x6d, 0x8a, 0x19, 0x2c, 0x2d, - 0x61, 0x82, 0x49, 0xf4, 0xa8, 0x86, 0x4f, 0x7c, 0x75, 0x15, 0x13, 0x82, 0x3b, 0x48, 0x8d, 0xde, - 0x8c, 0xa0, 0xa5, 0xea, 0x4e, 0x8f, 0x87, 0x6a, 0x39, 0xd2, 0x5c, 0x27, 0x02, 0xea, 0xdf, 0x44, - 0xb0, 0xd8, 0xa0, 0xf8, 0xc4, 0x43, 0xba, 0x8f, 0x4e, 0xa2, 0x08, 0xdc, 0x07, 0x15, 0xc6, 0x9c, - 0x51, 0x5f, 0xf7, 0x51, 0x55, 0xdc, 0x10, 0x37, 0xe7, 0xf6, 0x96, 0x14, 0x26, 0xa3, 0x0c, 0x65, - 0x94, 0x23, 0xa7, 0xa7, 0xcd, 0x31, 0xf2, 0x34, 0x04, 0xe1, 0x0b, 0xb0, 0x68, 0x12, 0x87, 0x22, - 0x87, 0x06, 0x94, 0xe7, 0x4e, 0x8d, 0xc9, 0x5d, 0x88, 0x61, 0x96, 0x7e, 0x1f, 0x94, 0xa8, 0x85, - 0x1d, 0xe4, 0x55, 0xa7, 0x37, 0xc4, 0xcd, 0xb2, 0xc6, 0xdf, 0x0e, 0xef, 0x7d, 0x3c, 0xaf, 0x09, - 0xbf, 0xcf, 0x6b, 0xc2, 0x87, 0xeb, 0x8b, 0x2d, 0xbe, 0x58, 0x5f, 0x05, 0x2b, 0x19, 0xdf, 0x1a, - 0xa2, 0x6e, 0xb8, 0x61, 0xfd, 0x0b, 0xab, 0xe9, 0xb5, 0xdb, 0x1c, 0xd5, 0xb4, 0x06, 0xca, 0xbc, - 0x26, 0xab, 0x19, 0x15, 0x54, 0xd6, 0xee, 0xb0, 0x85, 0x97, 0x4d, 0xf8, 0x1c, 0x2c, 0xf0, 0xa0, - 0x8d, 0x28, 0xd5, 0xf1, 0x78, 0xdb, 0xf3, 0x8c, 0x6d, 0x30, 0xf4, 0x5f, 0x5c, 0x27, 0x9d, 0xc5, - 0xae, 0xbf, 0x4f, 0x81, 0xbb, 0x51, 0x0c, 0x7b, 0x7a, 0x73, 0x22, 0xdb, 0xd9, 0xef, 0x34, 0xf5, - 0x1f, 0xdf, 0x69, 0xfa, 0x2f, 0xbe, 0xd3, 0x0e, 0x58, 0x72, 0x3d, 0x42, 0x5a, 0x67, 0x01, 0xf3, - 0x7a, 0xc6, 0xf6, 0xae, 0xce, 0x6c, 0x88, 0x9b, 0x15, 0x0d, 0x46, 0xb1, 0x74, 0x19, 0x47, 0x60, - 0x3d, 0x93, 0x91, 0x91, 0x9f, 0x8d, 0x52, 0xa5, 0x54, 0x6a, 0xd1, 0x70, 0x94, 0x6e, 0x6f, 0xb3, - 0x04, 0xaa, 0xd9, 0x56, 0xc6, 0x7d, 0xfe, 0x2a, 0x82, 0xe5, 0x06, 0xc5, 0xa7, 0x81, 0x61, 0x5b, - 0x7e, 0xc3, 0xa2, 0x06, 0x6a, 0xeb, 0x5d, 0x8b, 0x04, 0xde, 0xf8, 0x66, 0x1f, 0x80, 0x8a, 0x9d, - 0x80, 0xc7, 0x36, 0x3b, 0x45, 0x16, 0x0e, 0xc8, 0x72, 0x8e, 0xf3, 0xaa, 0x58, 0xaf, 0x81, 0xf5, - 0x5c, 0x7b, 0x71, 0x01, 0xbd, 0xc4, 0x74, 0xbf, 0xd2, 0x3d, 0xdd, 0xa6, 0xf0, 0x01, 0x28, 0xeb, - 0x81, 0xdf, 0x26, 0x9e, 0xe5, 0xf7, 0xb8, 0xf3, 0xd1, 0x02, 0x3c, 0x00, 0x25, 0x37, 0xe2, 0xb8, - 0x69, 0x49, 0xb9, 0xf9, 0xcf, 0x51, 0xd8, 0x4e, 0xc7, 0x33, 0x97, 0x3f, 0x6b, 0x82, 0xc6, 0xf9, - 0xc3, 0x85, 0xd0, 0xda, 0x68, 0xa7, 0xd4, 0xf8, 0xb2, 0x84, 0xa1, 0xab, 0xbd, 0xcf, 0x33, 0x60, - 0xba, 0x41, 0x31, 0x7c, 0x0b, 0x2a, 0xa9, 0x9f, 0xc9, 0xc3, 0x3c, 0xb1, 0xcc, 0xc9, 0x95, 0x9e, - 0x4c, 0x00, 0x0d, 0x95, 0x42, 0x85, 0xd4, 0xd1, 0x2e, 0x52, 0x48, 0x42, 0x85, 0x0a, 0x79, 0x47, - 0x11, 0x9a, 0x60, 0x3e, 0x3d, 0xbf, 0x8f, 0x0a, 0xb3, 0x13, 0x94, 0xf4, 0x74, 0x12, 0x2a, 0x16, - 0xf1, 0x00, 0xcc, 0x99, 0xc1, 0xc7, 0x05, 0x7b, 0xdc, 0x44, 0xa5, 0xdd, 0x89, 0xd1, 0x58, 0xb3, - 0x05, 0x60, 0xb2, 0x60, 0x3e, 0x3d, 0xe3, 0x1b, 0xc8, 0xa0, 0x5b, 0x1a, 0x98, 0x1e, 0x06, 0x69, - 0xf6, 0xfd, 0xf5, 0xc5, 0x96, 0x78, 0xac, 0x5d, 0xf6, 0x65, 0xf1, 0xaa, 0x2f, 0x8b, 0xbf, 0xfa, - 0xb2, 0xf8, 0x69, 0x20, 0x0b, 0x57, 0x03, 0x59, 0xf8, 0x31, 0x90, 0x85, 0x37, 0x07, 0xd8, 0xf2, - 0xdb, 0x81, 0xa1, 0x98, 0xc4, 0x56, 0xf9, 0x65, 0x67, 0x19, 0xe6, 0x36, 0x26, 0x6a, 0x77, 0x5f, - 0xb5, 0x49, 0x33, 0xe8, 0x20, 0xca, 0xee, 0xad, 0x9d, 0xbd, 0x6d, 0x7e, 0x75, 0xf9, 0x3d, 0x17, - 0x51, 0xa3, 0x14, 0x9d, 0xb4, 0x67, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x44, 0x4f, 0xa6, 0x1c, - 0x55, 0x07, 0x00, 0x00, + // 658 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x95, 0x3f, 0x6f, 0xd3, 0x4e, + 0x18, 0xc7, 0xe3, 0xfe, 0x89, 0x7e, 0xb9, 0xa6, 0xed, 0x8f, 0x53, 0xa1, 0xa9, 0x4b, 0x9d, 0x2a, + 0x30, 0x94, 0x42, 0xed, 0x26, 0x0c, 0x8d, 0x8a, 0x18, 0xda, 0x4e, 0x0c, 0x91, 0x90, 0x2b, 0x16, + 0x96, 0x60, 0x3b, 0x97, 0x8b, 0xa5, 0xd8, 0x67, 0xf9, 0xec, 0x88, 0x0c, 0x48, 0x88, 0x89, 0x11, + 0x24, 0x16, 0x36, 0x5e, 0x42, 0xc5, 0x7b, 0x40, 0xea, 0xd8, 0x91, 0x09, 0xa1, 0x64, 0xe8, 0xdb, + 0x40, 0xf6, 0x5d, 0x1c, 0xdb, 0x8d, 0x4d, 0x2a, 0x36, 0xfb, 0x9e, 0xcf, 0x73, 0xdf, 0xef, 0xf3, + 0xf8, 0x39, 0x1f, 0xd8, 0x36, 0x75, 0x43, 0x31, 0x88, 0x8b, 0x14, 0xa3, 0x6f, 0x22, 0xdb, 0x53, + 0x06, 0x75, 0xc5, 0x7b, 0x2b, 0x3b, 0x2e, 0xf1, 0x08, 0x84, 0xa6, 0x6e, 0xc8, 0x41, 0x50, 0x66, + 0x41, 0x79, 0x50, 0x17, 0x37, 0x0d, 0x42, 0x2d, 0x42, 0x15, 0x8b, 0xe2, 0x80, 0xb5, 0x28, 0x66, + 0xb0, 0xb8, 0x81, 0x09, 0x26, 0xe1, 0xa3, 0x12, 0x3c, 0xf1, 0xd5, 0x2d, 0x4c, 0x08, 0xee, 0x23, + 0x25, 0x7c, 0xd3, 0xfd, 0xae, 0xa2, 0xd9, 0x43, 0x1e, 0xaa, 0xce, 0x90, 0xe6, 0x3a, 0x21, 0x50, + 0xfb, 0x2e, 0x80, 0xf5, 0x16, 0xc5, 0x67, 0x2e, 0xd2, 0x3c, 0x74, 0x16, 0x46, 0xe0, 0x11, 0x28, + 0x33, 0xa6, 0x4d, 0x3d, 0xcd, 0x43, 0x15, 0x61, 0x57, 0xd8, 0x5b, 0x69, 0x6c, 0xc8, 0x4c, 0x46, + 0x9e, 0xc8, 0xc8, 0x27, 0xf6, 0x50, 0x5d, 0x61, 0xe4, 0x79, 0x00, 0xc2, 0xe7, 0x60, 0xdd, 0x20, + 0x36, 0x45, 0x36, 0xf5, 0x29, 0xcf, 0x5d, 0xc8, 0xc9, 0x5d, 0x8b, 0x60, 0x96, 0x7e, 0x0f, 0x14, + 0xa9, 0x89, 0x6d, 0xe4, 0x56, 0x16, 0x77, 0x85, 0xbd, 0x92, 0xca, 0xdf, 0x8e, 0xd7, 0x3f, 0x7e, + 0xab, 0x16, 0x3e, 0x5c, 0x5f, 0xec, 0xf3, 0x85, 0xda, 0x16, 0xd8, 0x4c, 0x79, 0x56, 0x11, 0x75, + 0x82, 0xcd, 0x6a, 0x5f, 0x58, 0x3d, 0xaf, 0x9c, 0xce, 0xb4, 0x9e, 0x6d, 0x50, 0xe2, 0xf5, 0x98, + 0x9d, 0xb0, 0x98, 0x92, 0xfa, 0x1f, 0x5b, 0x78, 0xd1, 0x81, 0xcf, 0xc0, 0x1a, 0x0f, 0x5a, 0x88, + 0x52, 0x0d, 0xe7, 0x5b, 0x5e, 0x65, 0x6c, 0x8b, 0xa1, 0xb7, 0x75, 0x1c, 0x77, 0x15, 0x39, 0xfe, + 0xb1, 0x00, 0xfe, 0x0f, 0x63, 0xd8, 0xd5, 0x3a, 0x73, 0x59, 0x4e, 0x7f, 0x9f, 0x85, 0x7f, 0xf8, + 0x3e, 0x8b, 0xb7, 0xf8, 0x3e, 0x87, 0x60, 0xc3, 0x71, 0x09, 0xe9, 0xb6, 0x7d, 0xe6, 0xb5, 0xcd, + 0xf6, 0xae, 0x2c, 0xed, 0x0a, 0x7b, 0x65, 0x15, 0x86, 0xb1, 0x64, 0x19, 0x27, 0x60, 0x27, 0x95, + 0x91, 0x92, 0x5f, 0x0e, 0x53, 0xc5, 0x44, 0x6a, 0xd6, 0x50, 0x14, 0xf3, 0x5b, 0x2c, 0x82, 0x4a, + 0xba, 0x8d, 0x51, 0x8f, 0xbf, 0x0a, 0xe0, 0x6e, 0x8b, 0xe2, 0x73, 0x5f, 0xb7, 0x4c, 0xaf, 0x65, + 0x52, 0x1d, 0xf5, 0xb4, 0x81, 0x49, 0x7c, 0x37, 0xbf, 0xd1, 0x4d, 0x50, 0xb6, 0x62, 0x70, 0x6e, + 0xa3, 0x13, 0x64, 0xe6, 0x60, 0xdc, 0x49, 0xb9, 0xae, 0x08, 0xb5, 0x2a, 0xd8, 0x99, 0x69, 0x2d, + 0x32, 0xff, 0x2e, 0x36, 0xd1, 0x2f, 0x35, 0x57, 0xb3, 0x28, 0xbc, 0x0f, 0x4a, 0x9a, 0xef, 0xf5, + 0x88, 0x6b, 0x7a, 0x43, 0xee, 0x7a, 0xba, 0x00, 0x9b, 0xa0, 0xe8, 0x84, 0x1c, 0x37, 0x2c, 0xca, + 0x37, 0xff, 0x31, 0x32, 0xdb, 0xe9, 0x74, 0xe9, 0xf2, 0x57, 0xb5, 0xa0, 0x72, 0xfe, 0x18, 0x4e, + 0xec, 0x4d, 0x77, 0x4b, 0x8c, 0x2e, 0x4b, 0x9a, 0x38, 0x6b, 0x7c, 0x5e, 0x02, 0x8b, 0x2d, 0x8a, + 0xe1, 0x1b, 0x50, 0x4e, 0xfc, 0x40, 0x1e, 0xcc, 0x12, 0x4c, 0x9d, 0x58, 0xf1, 0xf1, 0x1c, 0xd0, + 0x44, 0x29, 0x50, 0x48, 0x1c, 0xe9, 0x2c, 0x85, 0x38, 0x94, 0xa9, 0x30, 0xeb, 0x18, 0x42, 0x03, + 0xac, 0x26, 0x67, 0xf7, 0x61, 0x66, 0x76, 0x8c, 0x12, 0x9f, 0xcc, 0x43, 0x45, 0x22, 0x2e, 0x80, + 0x33, 0x66, 0xf0, 0x51, 0xc6, 0x1e, 0x37, 0x51, 0xb1, 0x3e, 0x37, 0x1a, 0x69, 0x76, 0x01, 0x8c, + 0x17, 0xcc, 0x27, 0x28, 0xbf, 0x81, 0x0c, 0xfa, 0x4b, 0x03, 0x93, 0xc3, 0x20, 0x2e, 0xbf, 0xbf, + 0xbe, 0xd8, 0x17, 0x4e, 0xd5, 0xcb, 0x91, 0x24, 0x5c, 0x8d, 0x24, 0xe1, 0xf7, 0x48, 0x12, 0x3e, + 0x8d, 0xa5, 0xc2, 0xd5, 0x58, 0x2a, 0xfc, 0x1c, 0x4b, 0x85, 0xd7, 0x4d, 0x6c, 0x7a, 0x3d, 0x5f, + 0x97, 0x0d, 0x62, 0x29, 0xfc, 0x82, 0x33, 0x75, 0xe3, 0x00, 0x13, 0x65, 0x70, 0xa4, 0x58, 0xa4, + 0xe3, 0xf7, 0x11, 0x65, 0x77, 0xd5, 0x61, 0xe3, 0x80, 0x5f, 0x57, 0xde, 0xd0, 0x41, 0x54, 0x2f, + 0x86, 0x27, 0xed, 0xe9, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x70, 0x00, 0x5d, 0xdc, 0x49, 0x07, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/core/03-connection/types/tx.pb.go b/modules/core/03-connection/types/tx.pb.go index be7cf0c1e24..8be9326652a 100644 --- a/modules/core/03-connection/types/tx.pb.go +++ b/modules/core/03-connection/types/tx.pb.go @@ -421,20 +421,6 @@ func (m *MsgUpdateParams) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUpdateParams proto.InternalMessageInfo -func (m *MsgUpdateParams) GetAuthority() string { - if m != nil { - return m.Authority - } - return "" -} - -func (m *MsgUpdateParams) GetParams() Params { - if m != nil { - return m.Params - } - return Params{} -} - // MsgUpdateParamsResponse defines the MsgUpdateParams response type. type MsgUpdateParamsResponse struct { } @@ -488,67 +474,66 @@ func init() { func init() { proto.RegisterFile("ibc/core/connection/v1/tx.proto", fileDescriptor_5d00fde5fc97399e) } var fileDescriptor_5d00fde5fc97399e = []byte{ - // 948 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0x4d, 0x6f, 0x1b, 0x45, - 0x18, 0xc7, 0xbd, 0x89, 0xed, 0xc4, 0x8f, 0xdd, 0x06, 0x06, 0x27, 0xd9, 0x6e, 0x5b, 0xdb, 0x35, - 0x48, 0x89, 0x2a, 0xb2, 0xdb, 0xb4, 0xa0, 0x96, 0x92, 0x4b, 0xe2, 0x0b, 0x11, 0x0a, 0x54, 0x4b, - 0xe8, 0x81, 0x8b, 0x65, 0xaf, 0x37, 0xeb, 0x51, 0xe2, 0x9d, 0xd5, 0xce, 0xd8, 0xb0, 0x48, 0x48, - 0x08, 0x2e, 0xdc, 0xe0, 0x23, 0xf4, 0x23, 0xf4, 0x63, 0xf4, 0x84, 0x2a, 0x0e, 0x88, 0x13, 0x42, - 0xc9, 0xa1, 0x7c, 0x00, 0x3e, 0x00, 0xda, 0x99, 0xd9, 0x97, 0xd8, 0xeb, 0xb2, 0x6e, 0xb8, 0xed, - 0x3e, 0xfb, 0x7f, 0x9e, 0x79, 0x5e, 0x7e, 0xb3, 0x33, 0xd0, 0xc4, 0x7d, 0xcb, 0xb0, 0x88, 0x6f, - 0x1b, 0x16, 0x71, 0x5d, 0xdb, 0x62, 0x98, 0xb8, 0xc6, 0x64, 0xd7, 0x60, 0xdf, 0xe8, 0x9e, 0x4f, - 0x18, 0x41, 0x1b, 0xb8, 0x6f, 0xe9, 0xa1, 0x40, 0x4f, 0x04, 0xfa, 0x64, 0x57, 0xab, 0x3b, 0xc4, - 0x21, 0x5c, 0x62, 0x84, 0x4f, 0x42, 0xad, 0x6d, 0x5a, 0x84, 0x8e, 0x08, 0x35, 0x46, 0xd4, 0x09, - 0xa3, 0x8c, 0xa8, 0x23, 0x3f, 0xdc, 0x70, 0x08, 0x71, 0xce, 0x6c, 0x83, 0xbf, 0xf5, 0xc7, 0x27, - 0x46, 0xcf, 0x0d, 0xe4, 0xa7, 0x54, 0x0a, 0x67, 0xd8, 0x76, 0x59, 0xe8, 0x28, 0x9e, 0xa4, 0x60, - 0x6b, 0x4e, 0x8e, 0xa9, 0x84, 0xb8, 0xb0, 0xfd, 0xf3, 0x12, 0xac, 0x1f, 0x51, 0xa7, 0x13, 0xdb, - 0x3f, 0xf7, 0x6c, 0xf7, 0xd0, 0xc5, 0x0c, 0xdd, 0x84, 0x8a, 0x08, 0xd9, 0xc5, 0x03, 0x55, 0x69, - 0x29, 0xdb, 0x15, 0x73, 0x55, 0x18, 0x0e, 0x07, 0xe8, 0x33, 0xa8, 0x59, 0x64, 0xec, 0x32, 0xdb, - 0xf7, 0x7a, 0x3e, 0x0b, 0xd4, 0xa5, 0x96, 0xb2, 0x5d, 0xbd, 0xff, 0x9e, 0x9e, 0x5d, 0xb9, 0xde, - 0x49, 0x69, 0x0f, 0x8a, 0x2f, 0xfe, 0x6c, 0x16, 0xcc, 0x4b, 0xfe, 0xe8, 0x23, 0x58, 0x99, 0xd8, - 0x3e, 0xc5, 0xc4, 0x55, 0x97, 0x79, 0xa8, 0xe6, 0xbc, 0x50, 0x4f, 0x85, 0xcc, 0x8c, 0xf4, 0xe8, - 0x0e, 0xd4, 0x06, 0xf6, 0x59, 0x2f, 0xe8, 0x7a, 0xb6, 0x8f, 0xc9, 0x40, 0x2d, 0xb6, 0x94, 0xed, - 0xa2, 0x59, 0xe5, 0xb6, 0x27, 0xdc, 0x84, 0x36, 0xa0, 0x4c, 0xb1, 0xe3, 0xda, 0xbe, 0x5a, 0xe2, - 0x75, 0xc8, 0xb7, 0xc7, 0xef, 0xfc, 0xf4, 0xac, 0x59, 0xf8, 0xfb, 0x59, 0xb3, 0xf0, 0xc3, 0xab, - 0xe7, 0x77, 0xa5, 0xb1, 0xdd, 0x84, 0xdb, 0x99, 0x0d, 0x31, 0x6d, 0xea, 0x11, 0x97, 0xda, 0xed, - 0xdf, 0x4b, 0x50, 0x9f, 0x51, 0x1c, 0xfb, 0xc1, 0xeb, 0x3b, 0xf6, 0x08, 0x36, 0x3c, 0xdf, 0x9e, - 0x60, 0x32, 0xa6, 0xdd, 0xa4, 0xa2, 0x50, 0x19, 0xf6, 0xae, 0x72, 0xb0, 0xa4, 0x2a, 0x66, 0x3d, - 0x52, 0x24, 0xb1, 0x0f, 0x07, 0xe8, 0x21, 0xd4, 0x64, 0x58, 0xca, 0x7a, 0xcc, 0x96, 0x0d, 0xaa, - 0xeb, 0x02, 0x0f, 0x3d, 0xc2, 0x43, 0xdf, 0x77, 0x03, 0xb3, 0x2a, 0x94, 0x5f, 0x84, 0xc2, 0x99, - 0x21, 0x15, 0xaf, 0x38, 0xa4, 0xe9, 0x4e, 0x97, 0x66, 0x3b, 0x7d, 0x0c, 0xeb, 0x69, 0x97, 0xae, - 0x1c, 0x12, 0x55, 0xcb, 0xad, 0xe5, 0x3c, 0x53, 0xad, 0xa7, 0xbd, 0xa5, 0x91, 0xa2, 0x0e, 0xd4, - 0x3c, 0x9f, 0x90, 0x93, 0xee, 0xd0, 0xc6, 0xce, 0x90, 0xa9, 0x2b, 0xbc, 0x10, 0x2d, 0x15, 0x4c, - 0xb0, 0x3f, 0xd9, 0xd5, 0x3f, 0xe1, 0x0a, 0x99, 0x7e, 0x95, 0x7b, 0x09, 0x13, 0xba, 0x0d, 0x20, - 0x82, 0x60, 0x17, 0x33, 0x75, 0xb5, 0xa5, 0x6c, 0xd7, 0xcc, 0x0a, 0xb7, 0x70, 0xdc, 0xef, 0x44, - 0x6b, 0x88, 0x58, 0x6a, 0x85, 0x0b, 0x44, 0x84, 0x0e, 0x37, 0xa1, 0x2d, 0x58, 0x93, 0x92, 0x90, - 0x03, 0x97, 0x8e, 0xa9, 0x0a, 0x5c, 0x75, 0x5d, 0xa8, 0x22, 0x2b, 0xfa, 0x14, 0xde, 0x8a, 0x25, - 0x51, 0xce, 0xd5, 0x9c, 0x39, 0xaf, 0xc5, 0x9e, 0x32, 0xef, 0x04, 0xde, 0x5a, 0x1a, 0x5e, 0xf4, - 0x31, 0x68, 0x43, 0x42, 0x59, 0x92, 0x8c, 0xc0, 0xa3, 0xcb, 0x73, 0x51, 0xaf, 0xf1, 0xc4, 0x36, - 0x43, 0x45, 0x9c, 0x17, 0xa7, 0xe2, 0x49, 0xf8, 0x39, 0x9b, 0xfc, 0x06, 0xdc, 0xca, 0xe2, 0x3a, - 0x06, 0xff, 0xb7, 0x62, 0x06, 0xf8, 0xfb, 0xd6, 0x29, 0x7a, 0x17, 0xae, 0x5d, 0x46, 0x5a, 0xc0, - 0x5f, 0xb3, 0xd2, 0x18, 0xef, 0x81, 0x76, 0x09, 0x8d, 0x8c, 0x4d, 0x60, 0xaa, 0x69, 0xc5, 0xa5, - 0x4d, 0x70, 0x85, 0x1f, 0xc4, 0xf4, 0xfe, 0x29, 0xe6, 0xdd, 0x3f, 0xd3, 0xd8, 0x95, 0xde, 0x04, - 0xbb, 0x9b, 0x20, 0x20, 0xeb, 0x32, 0x3f, 0x50, 0xcb, 0x7c, 0x2a, 0xab, 0xdc, 0x10, 0xfe, 0x31, - 0xa6, 0xa1, 0x5b, 0xc9, 0x05, 0xdd, 0x6a, 0x6e, 0xe8, 0x2a, 0x57, 0x87, 0x0e, 0x16, 0x80, 0xae, - 0xfa, 0x3f, 0x41, 0xb7, 0x6f, 0x9d, 0xc6, 0xd0, 0xfd, 0xaa, 0x80, 0x3a, 0x23, 0xe8, 0x10, 0xf7, - 0x04, 0xfb, 0xa3, 0x7c, 0xe0, 0xc5, 0x13, 0xe8, 0x59, 0xa7, 0x9c, 0xb3, 0x68, 0x02, 0x21, 0xba, - 0xd3, 0x33, 0x5e, 0x7e, 0x93, 0x19, 0x27, 0xdd, 0x2a, 0xfe, 0xf7, 0xf9, 0xd2, 0x86, 0xd6, 0xbc, - 0x7a, 0xe2, 0xa2, 0xbf, 0x83, 0xb5, 0x23, 0xea, 0x7c, 0xe9, 0x0d, 0xc2, 0xde, 0xf5, 0xfc, 0xde, - 0x88, 0xa2, 0x5b, 0x50, 0xe9, 0x8d, 0xd9, 0x90, 0xf8, 0x98, 0x05, 0xb2, 0xcc, 0xc4, 0x80, 0xf6, - 0xa0, 0xec, 0x71, 0x9d, 0x3c, 0x89, 0x1b, 0xf3, 0x76, 0x87, 0x88, 0x26, 0x8b, 0x90, 0x3e, 0x8f, - 0xaf, 0x87, 0xf9, 0x25, 0xd1, 0xda, 0x37, 0x60, 0x73, 0x6a, 0xf9, 0x28, 0xb3, 0xfb, 0xff, 0x14, - 0x61, 0xf9, 0x88, 0x3a, 0xe8, 0x5b, 0x40, 0x19, 0x77, 0x86, 0x9d, 0x79, 0xcb, 0x66, 0x9e, 0xa8, - 0xda, 0x87, 0x0b, 0xc9, 0xa3, 0x1c, 0xd0, 0xd7, 0xf0, 0xf6, 0xec, 0xe1, 0xfb, 0x7e, 0xee, 0x58, - 0xc7, 0x7e, 0xa0, 0x7d, 0xb0, 0x88, 0x7a, 0xfe, 0xc2, 0x21, 0x41, 0xf9, 0x17, 0xde, 0xb7, 0x4e, - 0x17, 0x58, 0x38, 0xb5, 0x09, 0xd0, 0x8f, 0x0a, 0xac, 0x67, 0xef, 0x80, 0x7b, 0xb9, 0xe3, 0x49, - 0x0f, 0xed, 0xd1, 0xa2, 0x1e, 0x71, 0x16, 0x3e, 0x6c, 0x08, 0x26, 0x12, 0x99, 0x84, 0x73, 0xeb, - 0x35, 0x31, 0xd3, 0x18, 0x69, 0x46, 0x4e, 0x61, 0xb4, 0xa6, 0x56, 0xfa, 0xfe, 0xd5, 0xf3, 0xbb, - 0xca, 0xc1, 0xd3, 0x17, 0xe7, 0x0d, 0xe5, 0xe5, 0x79, 0x43, 0xf9, 0xeb, 0xbc, 0xa1, 0xfc, 0x72, - 0xd1, 0x28, 0xbc, 0xbc, 0x68, 0x14, 0xfe, 0xb8, 0x68, 0x14, 0xbe, 0xda, 0x73, 0x30, 0x1b, 0x8e, - 0xfb, 0xba, 0x45, 0x46, 0x86, 0xbc, 0x49, 0xe3, 0xbe, 0xb5, 0xe3, 0x10, 0x63, 0xf2, 0xd0, 0x18, - 0x91, 0xc1, 0xf8, 0xcc, 0xa6, 0xe2, 0x26, 0x7c, 0xef, 0xc1, 0x4e, 0xea, 0x32, 0xcc, 0x02, 0xcf, - 0xa6, 0xfd, 0x32, 0xff, 0xfb, 0x3f, 0xf8, 0x37, 0x00, 0x00, 0xff, 0xff, 0x4a, 0x09, 0xa7, 0xf6, - 0xd4, 0x0b, 0x00, 0x00, + // 944 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0xcd, 0x6e, 0xdb, 0x46, + 0x10, 0xc7, 0x45, 0x5b, 0x92, 0xad, 0x91, 0x52, 0xb7, 0x0b, 0xd9, 0x66, 0x98, 0x44, 0x52, 0xd4, + 0x02, 0x36, 0x82, 0x9a, 0x8c, 0x93, 0x16, 0x49, 0x53, 0x5f, 0x6c, 0x5d, 0x6a, 0x14, 0x6e, 0x03, + 0xd5, 0xcd, 0xa1, 0x17, 0x41, 0xa2, 0xd6, 0xd4, 0xc2, 0x16, 0x97, 0xe0, 0xae, 0xd4, 0xb2, 0xa7, + 0x7e, 0x5c, 0x0a, 0xf4, 0xd2, 0x47, 0xe8, 0x23, 0xe4, 0x31, 0x82, 0x1e, 0x8a, 0xa0, 0xa7, 0x9e, + 0x8a, 0xc2, 0x3e, 0xe4, 0x05, 0xfa, 0x00, 0x05, 0x77, 0x97, 0x1f, 0xd6, 0x87, 0x41, 0xd9, 0xb9, + 0x49, 0xc3, 0xff, 0xcc, 0xfe, 0x67, 0xf6, 0xb7, 0xe4, 0x42, 0x9d, 0xf4, 0x6c, 0xcb, 0xa6, 0x3e, + 0xb6, 0x6c, 0xea, 0xba, 0xd8, 0xe6, 0x84, 0xba, 0xd6, 0x78, 0xd7, 0xe2, 0xdf, 0x99, 0x9e, 0x4f, + 0x39, 0x45, 0x1b, 0xa4, 0x67, 0x9b, 0xa1, 0xc0, 0x4c, 0x04, 0xe6, 0x78, 0xd7, 0xa8, 0x3a, 0xd4, + 0xa1, 0x42, 0x62, 0x85, 0xbf, 0xa4, 0xda, 0xd8, 0xb4, 0x29, 0x1b, 0x52, 0x66, 0x0d, 0x99, 0x13, + 0x56, 0x19, 0x32, 0x47, 0x3d, 0xb8, 0xed, 0x50, 0xea, 0x9c, 0x61, 0x4b, 0xfc, 0xeb, 0x8d, 0x4e, + 0xac, 0xae, 0x1b, 0xa8, 0x47, 0x29, 0x0b, 0x67, 0x04, 0xbb, 0x3c, 0x4c, 0x94, 0xbf, 0x94, 0x60, + 0x6b, 0x8e, 0xc7, 0x94, 0x21, 0x21, 0x6c, 0xfe, 0xba, 0x04, 0xeb, 0x47, 0xcc, 0x69, 0xc5, 0xf1, + 0x2f, 0x3d, 0xec, 0x1e, 0xba, 0x84, 0xa3, 0x3b, 0x50, 0x92, 0x25, 0x3b, 0xa4, 0xaf, 0x6b, 0x0d, + 0x6d, 0xbb, 0xd4, 0x5e, 0x95, 0x81, 0xc3, 0x3e, 0xfa, 0x02, 0x2a, 0x36, 0x1d, 0xb9, 0x1c, 0xfb, + 0x5e, 0xd7, 0xe7, 0x81, 0xbe, 0xd4, 0xd0, 0xb6, 0xcb, 0x8f, 0x3e, 0x30, 0x67, 0x77, 0x6e, 0xb6, + 0x52, 0xda, 0x83, 0xfc, 0xab, 0x7f, 0xea, 0xb9, 0xf6, 0xa5, 0x7c, 0xf4, 0x09, 0xac, 0x8c, 0xb1, + 0xcf, 0x08, 0x75, 0xf5, 0x65, 0x51, 0xaa, 0x3e, 0xaf, 0xd4, 0x0b, 0x29, 0x6b, 0x47, 0x7a, 0x74, + 0x1f, 0x2a, 0x7d, 0x7c, 0xd6, 0x0d, 0x3a, 0x1e, 0xf6, 0x09, 0xed, 0xeb, 0xf9, 0x86, 0xb6, 0x9d, + 0x6f, 0x97, 0x45, 0xec, 0xb9, 0x08, 0xa1, 0x0d, 0x28, 0x32, 0xe2, 0xb8, 0xd8, 0xd7, 0x0b, 0xa2, + 0x0f, 0xf5, 0xef, 0xd9, 0xda, 0x2f, 0xbf, 0xd7, 0x73, 0x3f, 0xbd, 0x79, 0xf9, 0x40, 0x05, 0x9a, + 0x75, 0xb8, 0x37, 0x73, 0x18, 0x6d, 0xcc, 0x3c, 0xea, 0x32, 0xdc, 0xfc, 0xab, 0x00, 0xd5, 0x29, + 0xc5, 0xb1, 0x1f, 0x5c, 0x3d, 0xad, 0xa7, 0xb0, 0xe1, 0xf9, 0x78, 0x4c, 0xe8, 0x88, 0x75, 0x92, + 0x6e, 0x42, 0x65, 0x38, 0xb7, 0xd2, 0xc1, 0x92, 0xae, 0xb5, 0xab, 0x91, 0x22, 0xa9, 0x7d, 0xd8, + 0x47, 0x4f, 0xa0, 0xa2, 0xca, 0x32, 0xde, 0xe5, 0x58, 0x0d, 0xa7, 0x6a, 0x4a, 0x34, 0xcc, 0x08, + 0x0d, 0x73, 0xdf, 0x0d, 0xda, 0x65, 0xa9, 0xfc, 0x2a, 0x14, 0x4e, 0x6d, 0x50, 0xfe, 0x86, 0x1b, + 0x34, 0x39, 0xe5, 0xc2, 0xf4, 0x94, 0x8f, 0x61, 0x3d, 0x9d, 0xd2, 0x51, 0x1b, 0xc4, 0xf4, 0x62, + 0x63, 0x39, 0xcb, 0x8e, 0x56, 0xd3, 0xd9, 0x2a, 0xc8, 0x50, 0x0b, 0x2a, 0x9e, 0x4f, 0xe9, 0x49, + 0x67, 0x80, 0x89, 0x33, 0xe0, 0xfa, 0x8a, 0x68, 0xc4, 0x48, 0x15, 0x93, 0xdc, 0x8f, 0x77, 0xcd, + 0xcf, 0x84, 0x42, 0xd9, 0x2f, 0x8b, 0x2c, 0x19, 0x42, 0xf7, 0x00, 0x64, 0x11, 0xe2, 0x12, 0xae, + 0xaf, 0x36, 0xb4, 0xed, 0x4a, 0xbb, 0x24, 0x22, 0x02, 0xf5, 0xfb, 0xd1, 0x1a, 0xb2, 0x96, 0x5e, + 0x12, 0x02, 0x59, 0xa1, 0x25, 0x42, 0x68, 0x0b, 0xd6, 0x94, 0x24, 0xe4, 0xc0, 0x65, 0x23, 0xa6, + 0x83, 0x50, 0xbd, 0x23, 0x55, 0x51, 0x14, 0x7d, 0x0e, 0xef, 0xc6, 0x92, 0xc8, 0x73, 0x39, 0xa3, + 0xe7, 0xb5, 0x38, 0x53, 0xf9, 0x4e, 0xc0, 0xad, 0xa4, 0xc1, 0x45, 0x9f, 0x82, 0x31, 0xa0, 0x8c, + 0x27, 0x66, 0x24, 0x1e, 0x1d, 0xe1, 0x45, 0xbf, 0x25, 0x8c, 0x6d, 0x86, 0x8a, 0xd8, 0x97, 0xa0, + 0xe2, 0x79, 0xf8, 0x78, 0x9a, 0xfa, 0x1a, 0xdc, 0x9d, 0xc5, 0x74, 0x0c, 0xfd, 0x9f, 0xf9, 0x19, + 0xd0, 0xef, 0xdb, 0xa7, 0xe8, 0x7d, 0xb8, 0x75, 0x19, 0x67, 0x09, 0x7e, 0xc5, 0x4e, 0x23, 0xbc, + 0x07, 0xc6, 0x25, 0x2c, 0x66, 0x1c, 0x80, 0xb6, 0x9e, 0x56, 0x5c, 0x3a, 0x00, 0x37, 0x78, 0x31, + 0x4c, 0x9e, 0x9d, 0x7c, 0xd6, 0xb3, 0x33, 0x89, 0x5c, 0xe1, 0x3a, 0xc8, 0xdd, 0x01, 0x09, 0x58, + 0x87, 0xfb, 0x81, 0x5e, 0x14, 0x3b, 0xb2, 0x2a, 0x02, 0xe1, 0xdb, 0x62, 0x12, 0xb8, 0x95, 0x4c, + 0xc0, 0xad, 0x66, 0x06, 0xae, 0x74, 0x73, 0xe0, 0x60, 0x01, 0xe0, 0xca, 0x6f, 0x01, 0xb8, 0x7d, + 0xfb, 0x34, 0x06, 0xee, 0x0f, 0x0d, 0xf4, 0x29, 0x41, 0x8b, 0xba, 0x27, 0xc4, 0x1f, 0x66, 0x83, + 0x2e, 0x9e, 0x7e, 0xd7, 0x3e, 0x15, 0x8c, 0x45, 0xd3, 0x0f, 0xb1, 0x9d, 0xdc, 0xdf, 0xe5, 0xeb, + 0xec, 0x6f, 0x32, 0xa9, 0xfc, 0xd5, 0xdf, 0x94, 0x26, 0x34, 0xe6, 0xf5, 0x12, 0x37, 0xfc, 0xa3, + 0x06, 0x6b, 0x47, 0xcc, 0xf9, 0xda, 0xeb, 0x87, 0x43, 0xeb, 0xfa, 0xdd, 0x21, 0x43, 0x77, 0xa1, + 0xd4, 0x1d, 0xf1, 0x01, 0xf5, 0x09, 0x0f, 0x54, 0x8f, 0x49, 0x00, 0xed, 0x41, 0xd1, 0x13, 0x3a, + 0xf5, 0xe9, 0xad, 0xcd, 0x3b, 0x16, 0xb2, 0x9a, 0xea, 0x40, 0xe5, 0x3c, 0x43, 0x91, 0xc9, 0xa4, + 0x62, 0xf3, 0x36, 0x6c, 0x4e, 0x58, 0x88, 0xec, 0x3d, 0xfa, 0x2f, 0x0f, 0xcb, 0x47, 0xcc, 0x41, + 0xdf, 0x03, 0x9a, 0x71, 0x51, 0xd8, 0x99, 0xb7, 0xf4, 0xcc, 0x4f, 0xa9, 0xf1, 0xf1, 0x42, 0xf2, + 0xc8, 0x03, 0xfa, 0x16, 0xde, 0x9b, 0xfe, 0xea, 0x7e, 0x98, 0xb9, 0xd6, 0xb1, 0x1f, 0x18, 0x1f, + 0x2d, 0xa2, 0x9e, 0xbf, 0x70, 0x88, 0x50, 0xf6, 0x85, 0xf7, 0xed, 0xd3, 0x05, 0x16, 0x4e, 0x9d, + 0x02, 0xf4, 0xb3, 0x06, 0xeb, 0xb3, 0x8f, 0xc0, 0xc3, 0xcc, 0xf5, 0x54, 0x86, 0xf1, 0x74, 0xd1, + 0x8c, 0xd8, 0x85, 0x0f, 0x1b, 0x92, 0x89, 0x44, 0xa6, 0x00, 0xdd, 0xba, 0xa2, 0x66, 0x1a, 0x23, + 0xc3, 0xca, 0x28, 0x8c, 0xd6, 0x34, 0x0a, 0x3f, 0xbc, 0x79, 0xf9, 0x40, 0x3b, 0x78, 0xf1, 0xea, + 0xbc, 0xa6, 0xbd, 0x3e, 0xaf, 0x69, 0xff, 0x9e, 0xd7, 0xb4, 0xdf, 0x2e, 0x6a, 0xb9, 0xd7, 0x17, + 0xb5, 0xdc, 0xdf, 0x17, 0xb5, 0xdc, 0x37, 0x7b, 0x0e, 0xe1, 0x83, 0x51, 0xcf, 0xb4, 0xe9, 0xd0, + 0x52, 0xd7, 0x67, 0xd2, 0xb3, 0x77, 0x1c, 0x6a, 0x8d, 0x9f, 0x58, 0x43, 0xda, 0x1f, 0x9d, 0x61, + 0x26, 0xaf, 0xbf, 0x0f, 0x1f, 0xef, 0xa4, 0x6e, 0xc0, 0x3c, 0xf0, 0x30, 0xeb, 0x15, 0xc5, 0xab, + 0xff, 0xf1, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0xf6, 0xb0, 0x86, 0xad, 0xc9, 0x0b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/modules/core/04-channel/types/tx.pb.go b/modules/core/04-channel/types/tx.pb.go index 4674453a7f5..74ea4e61fd8 100644 --- a/modules/core/04-channel/types/tx.pb.go +++ b/modules/core/04-channel/types/tx.pb.go @@ -142,20 +142,6 @@ func (m *MsgChannelOpenInitResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgChannelOpenInitResponse proto.InternalMessageInfo -func (m *MsgChannelOpenInitResponse) GetChannelId() string { - if m != nil { - return m.ChannelId - } - return "" -} - -func (m *MsgChannelOpenInitResponse) GetVersion() string { - if m != nil { - return m.Version - } - return "" -} - // MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel // on Chain B. The version field within the Channel field has been deprecated. Its // value will be ignored by core IBC. @@ -243,20 +229,6 @@ func (m *MsgChannelOpenTryResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgChannelOpenTryResponse proto.InternalMessageInfo -func (m *MsgChannelOpenTryResponse) GetVersion() string { - if m != nil { - return m.Version - } - return "" -} - -func (m *MsgChannelOpenTryResponse) GetChannelId() string { - if m != nil { - return m.ChannelId - } - return "" -} - // MsgChannelOpenAck defines a msg sent by a Relayer to Chain A to acknowledge // the change of channel state to TRYOPEN on Chain B. type MsgChannelOpenAck struct { @@ -926,82 +898,82 @@ func init() { func init() { proto.RegisterFile("ibc/core/channel/v1/tx.proto", fileDescriptor_bc4637e0ac3fc7b7) } var fileDescriptor_bc4637e0ac3fc7b7 = []byte{ - // 1195 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0xbb, 0x6f, 0xdb, 0x46, - 0x18, 0x17, 0x65, 0x59, 0xb2, 0x3f, 0xb9, 0xb1, 0x42, 0x25, 0xb1, 0x42, 0xdb, 0x92, 0xaa, 0x21, - 0x76, 0xdd, 0x5a, 0x8a, 0x95, 0x3e, 0x90, 0xa0, 0x40, 0x61, 0xab, 0x2a, 0x6a, 0xa0, 0x7e, 0x80, - 0x92, 0x0b, 0xf4, 0x81, 0x0a, 0x16, 0x75, 0xa1, 0x09, 0x49, 0x3c, 0x95, 0xa4, 0x94, 0xa8, 0x53, - 0xd1, 0x29, 0x30, 0x3a, 0x14, 0x9d, 0xba, 0x18, 0x08, 0xd0, 0xa9, 0x5b, 0xa6, 0x0e, 0xdd, 0x0b, - 0x64, 0xcc, 0xd8, 0x29, 0x68, 0xed, 0xc1, 0xfd, 0x33, 0x0a, 0xde, 0x1d, 0x29, 0x8a, 0x22, 0x43, - 0x39, 0x56, 0x93, 0x8d, 0xfc, 0xbe, 0xdf, 0x7d, 0x8f, 0xdf, 0xef, 0xee, 0x78, 0x3c, 0x58, 0x52, - 0xea, 0x52, 0x41, 0xc2, 0x1a, 0x2a, 0x48, 0x47, 0x87, 0xaa, 0x8a, 0x5a, 0x85, 0xde, 0x46, 0xc1, - 0x78, 0x98, 0xef, 0x68, 0xd8, 0xc0, 0x7c, 0x52, 0xa9, 0x4b, 0x79, 0xd3, 0x9b, 0x67, 0xde, 0x7c, - 0x6f, 0x43, 0xb8, 0x26, 0x63, 0x19, 0x13, 0x7f, 0xc1, 0x7c, 0xa2, 0x50, 0x21, 0x33, 0x08, 0xd4, - 0x52, 0x90, 0x6a, 0x98, 0x71, 0xe8, 0x13, 0x03, 0xbc, 0xe9, 0x95, 0xc9, 0x0a, 0x4b, 0x21, 0x0b, - 0x12, 0xd6, 0xdb, 0x58, 0x2f, 0xb4, 0x75, 0xd9, 0x74, 0xb6, 0x75, 0x99, 0x3a, 0x72, 0xbf, 0x70, - 0xc0, 0xef, 0xe8, 0x72, 0x89, 0xa2, 0xf7, 0x3a, 0x48, 0xdd, 0x56, 0x15, 0x83, 0x5f, 0x80, 0x58, - 0x07, 0x6b, 0x46, 0x4d, 0x69, 0xa4, 0xb8, 0x2c, 0xb7, 0x3a, 0x2b, 0x46, 0xcd, 0xd7, 0xed, 0x06, - 0xff, 0x21, 0xc4, 0x58, 0xe4, 0x54, 0x38, 0xcb, 0xad, 0xc6, 0x8b, 0x4b, 0x79, 0x8f, 0x4e, 0xf2, - 0x2c, 0xde, 0x56, 0xe4, 0xe9, 0xf3, 0x4c, 0x48, 0xb4, 0x86, 0xf0, 0x37, 0x20, 0xaa, 0x2b, 0xb2, - 0x8a, 0xb4, 0xd4, 0x14, 0x8d, 0x4a, 0xdf, 0xee, 0x25, 0x1f, 0x3d, 0xce, 0x84, 0xfe, 0x7d, 0x9c, - 0x09, 0xfd, 0x70, 0xfe, 0x64, 0x8d, 0x19, 0x73, 0x07, 0x20, 0x8c, 0x56, 0x26, 0x22, 0xbd, 0x83, - 0x55, 0x1d, 0xf1, 0xcb, 0x00, 0x2c, 0xea, 0xa0, 0xc8, 0x59, 0x66, 0xd9, 0x6e, 0xf0, 0x29, 0x88, - 0xf5, 0x90, 0xa6, 0x2b, 0x58, 0x25, 0x75, 0xce, 0x8a, 0xd6, 0x6b, 0xee, 0x34, 0x0c, 0x57, 0x87, - 0xe3, 0x56, 0xb5, 0xbe, 0x7f, 0xc3, 0x45, 0x48, 0x76, 0x34, 0xd4, 0x53, 0x70, 0x57, 0xaf, 0x39, - 0x12, 0x92, 0xa0, 0x5b, 0xe1, 0x14, 0x27, 0x5e, 0xb5, 0xdc, 0x25, 0x3b, 0xb9, 0x83, 0xa4, 0xa9, - 0x8b, 0x93, 0xb4, 0x01, 0xd7, 0x24, 0xdc, 0x55, 0x0d, 0xa4, 0x75, 0x0e, 0x35, 0xa3, 0x5f, 0xb3, - 0xfa, 0x88, 0x90, 0xba, 0x92, 0x4e, 0xdf, 0xe7, 0xd4, 0x65, 0x92, 0xd1, 0xd1, 0x30, 0xbe, 0x5f, - 0x53, 0x54, 0xc5, 0x48, 0x4d, 0x67, 0xb9, 0xd5, 0x39, 0x71, 0x96, 0x58, 0x88, 0x9a, 0x25, 0x98, - 0xa3, 0xee, 0x23, 0xa4, 0xc8, 0x47, 0x46, 0x2a, 0x4a, 0x8a, 0x12, 0x1c, 0x45, 0xd1, 0xe9, 0xd4, - 0xdb, 0xc8, 0x7f, 0x4a, 0x10, 0xac, 0xa4, 0x38, 0x19, 0x45, 0x4d, 0x0e, 0xed, 0x62, 0xc1, 0xda, - 0x55, 0xe1, 0xe6, 0x08, 0xc7, 0xb6, 0x74, 0x0e, 0x6d, 0xb8, 0x21, 0x6d, 0x5c, 0xa2, 0x86, 0x5d, - 0xa2, 0xe6, 0xfe, 0x1c, 0x91, 0x6e, 0x53, 0x6a, 0xfa, 0x4b, 0xf7, 0xe2, 0x68, 0xfc, 0xfb, 0xb0, - 0x30, 0xc4, 0xb3, 0x03, 0x4b, 0x67, 0xe7, 0x75, 0xa7, 0x7b, 0xa0, 0xee, 0x4b, 0xe8, 0xb3, 0x08, - 0x54, 0x8d, 0x9a, 0xa1, 0xf5, 0x99, 0x3c, 0x33, 0xc4, 0x60, 0x4e, 0xbd, 0x57, 0xaf, 0xce, 0xa2, - 0x5b, 0x9d, 0x4d, 0xa9, 0x69, 0xa9, 0x93, 0x7b, 0xce, 0xc1, 0xf5, 0x61, 0x6f, 0x09, 0xab, 0xf7, - 0x15, 0xad, 0xfd, 0xd2, 0x44, 0xdb, 0xdd, 0x1f, 0x4a, 0x4d, 0x42, 0xad, 0xd5, 0xbd, 0xa9, 0x9e, - 0xbb, 0xfb, 0xc8, 0xe5, 0xba, 0x9f, 0x0e, 0xee, 0x3e, 0x03, 0xcb, 0x9e, 0xfd, 0xd9, 0x0c, 0x7c, - 0x07, 0xc9, 0x01, 0xa0, 0xd4, 0xc2, 0x3a, 0x7a, 0xf1, 0x9e, 0x18, 0xd0, 0xfe, 0x85, 0x36, 0xbd, - 0x65, 0x58, 0xf4, 0xc8, 0x6d, 0x97, 0xf6, 0x0f, 0x07, 0x37, 0x5c, 0xfe, 0xcb, 0xaa, 0x33, 0xbc, - 0x77, 0x4c, 0x05, 0xed, 0x1d, 0xff, 0xbf, 0x3e, 0x59, 0x48, 0x7b, 0xb7, 0x68, 0xb3, 0x70, 0xce, - 0xc1, 0x1b, 0x3b, 0xba, 0x2c, 0x22, 0xa9, 0xb7, 0x7f, 0x28, 0x35, 0x91, 0xc1, 0xdf, 0x85, 0x68, - 0x87, 0x3c, 0x91, 0xde, 0xe3, 0xc5, 0x45, 0xcf, 0x0d, 0x97, 0x82, 0x59, 0x81, 0x6c, 0x00, 0xff, - 0x16, 0x24, 0x68, 0x83, 0x12, 0x6e, 0xb7, 0x15, 0xa3, 0x8d, 0x54, 0x83, 0x90, 0x34, 0x27, 0xce, - 0x13, 0x7b, 0xc9, 0x36, 0x8f, 0x70, 0x31, 0x75, 0x39, 0x2e, 0x22, 0xc1, 0x5c, 0x7c, 0x43, 0xd6, - 0xe2, 0xa0, 0x51, 0x7b, 0x0f, 0xfd, 0x08, 0xa2, 0x1a, 0xd2, 0xbb, 0x2d, 0xda, 0xf0, 0x95, 0xe2, - 0x8a, 0x67, 0xc3, 0x16, 0x5c, 0x24, 0xd0, 0x6a, 0xbf, 0x83, 0x44, 0x36, 0xec, 0x5e, 0xc4, 0x4c, - 0x97, 0xfb, 0x39, 0x0c, 0xb0, 0xa3, 0xcb, 0x55, 0xa5, 0x8d, 0x70, 0x77, 0x32, 0x34, 0x76, 0x55, - 0x0d, 0x49, 0x48, 0xe9, 0xa1, 0xc6, 0x10, 0x8d, 0x07, 0xb6, 0x79, 0x32, 0x34, 0xbe, 0x03, 0xbc, - 0x8a, 0x1e, 0x1a, 0x35, 0x1d, 0x7d, 0xdb, 0x45, 0xaa, 0x84, 0x6a, 0x1a, 0x92, 0x7a, 0x84, 0xd2, - 0x88, 0x98, 0x30, 0x3d, 0x15, 0xe6, 0x30, 0xc9, 0xbb, 0xd8, 0x04, 0xfc, 0x8a, 0x1c, 0x89, 0x18, - 0x27, 0x93, 0x66, 0xfc, 0x0f, 0xfa, 0x0d, 0x63, 0xd1, 0xf7, 0x54, 0x32, 0xc1, 0x5f, 0x11, 0xf1, - 0x19, 0x88, 0xb3, 0xa9, 0x6e, 0x26, 0x65, 0x6b, 0x9d, 0xae, 0x7e, 0x5a, 0xc6, 0x44, 0x16, 0xbb, - 0xb7, 0x32, 0xd3, 0x81, 0xca, 0x44, 0x83, 0x95, 0xa9, 0x93, 0x0f, 0xd7, 0x30, 0x77, 0x93, 0x16, - 0xe8, 0xc7, 0x30, 0x91, 0x7f, 0x53, 0x6a, 0xaa, 0xf8, 0x41, 0x0b, 0x35, 0x64, 0x44, 0xd6, 0xfe, - 0x25, 0x14, 0x5a, 0x85, 0xf9, 0xc3, 0xe1, 0x68, 0x96, 0x40, 0x2e, 0xf3, 0x40, 0x20, 0x73, 0x60, - 0x63, 0x48, 0xa0, 0x4d, 0xd3, 0xf2, 0x1a, 0x76, 0x63, 0x89, 0x9c, 0xc2, 0x5d, 0x6c, 0x4c, 0x98, - 0xf3, 0xb5, 0xdf, 0x38, 0xe0, 0x47, 0x41, 0xfc, 0x7b, 0x90, 0x15, 0xcb, 0x95, 0xfd, 0xbd, 0xdd, - 0x4a, 0xb9, 0x26, 0x96, 0x2b, 0x07, 0x9f, 0x55, 0x6b, 0xd5, 0x2f, 0xf6, 0xcb, 0xb5, 0x83, 0xdd, - 0xca, 0x7e, 0xb9, 0xb4, 0xfd, 0xc9, 0x76, 0xf9, 0xe3, 0x44, 0x48, 0x98, 0x3f, 0x3e, 0xc9, 0xc6, - 0x1d, 0x26, 0x7e, 0x05, 0x6e, 0x7a, 0x0e, 0xdb, 0xdd, 0xdb, 0xdb, 0x4f, 0x70, 0xc2, 0xcc, 0xf1, - 0x49, 0x36, 0x62, 0x3e, 0xf3, 0xeb, 0xb0, 0xe4, 0x09, 0xac, 0x1c, 0x94, 0x4a, 0xe5, 0x4a, 0x25, - 0x11, 0x16, 0xe2, 0xc7, 0x27, 0xd9, 0x18, 0x7b, 0x15, 0x22, 0x8f, 0x7e, 0x4d, 0x87, 0x8a, 0xbf, - 0xcf, 0xc0, 0xd4, 0x8e, 0x2e, 0xf3, 0x4d, 0x98, 0x77, 0xff, 0x35, 0x79, 0x77, 0x3f, 0xfa, 0x13, - 0x23, 0x14, 0xc6, 0x04, 0xda, 0x3c, 0x1f, 0xc1, 0x15, 0xd7, 0x0f, 0xcb, 0xad, 0x31, 0x42, 0x54, - 0xb5, 0xbe, 0x90, 0x1f, 0x0f, 0xe7, 0x93, 0xc9, 0x3c, 0xa1, 0x8d, 0x93, 0x69, 0x53, 0x6a, 0x8e, - 0x95, 0xc9, 0x71, 0xd0, 0xe4, 0x0d, 0xe0, 0x3d, 0x0e, 0x99, 0x6b, 0x63, 0x44, 0x61, 0x58, 0xa1, - 0x38, 0x3e, 0xd6, 0xce, 0xaa, 0x42, 0x62, 0xe4, 0x64, 0xb7, 0x1a, 0x10, 0xc7, 0x46, 0x0a, 0xb7, - 0xc7, 0x45, 0xda, 0xf9, 0x1e, 0x40, 0xd2, 0xeb, 0xb4, 0xf6, 0xf6, 0x38, 0x81, 0xac, 0x3e, 0xef, - 0x5c, 0x00, 0x6c, 0x27, 0xfe, 0x1a, 0xc0, 0x71, 0x40, 0xca, 0xf9, 0x85, 0x18, 0x60, 0x84, 0xb5, - 0x60, 0x8c, 0x1d, 0xbd, 0x02, 0x31, 0xeb, 0xd0, 0x90, 0xf1, 0x1b, 0xc6, 0x00, 0xc2, 0x4a, 0x00, - 0xc0, 0x39, 0xf7, 0x5c, 0xdf, 0xc5, 0x5b, 0x01, 0x43, 0x19, 0xce, 0x7f, 0xee, 0xf9, 0x7c, 0x2b, - 0x9a, 0x30, 0xef, 0xde, 0xe0, 0x7d, 0xab, 0x74, 0x01, 0xfd, 0x17, 0xaf, 0xcf, 0x26, 0x29, 0x4c, - 0x7f, 0x7f, 0xfe, 0x64, 0x8d, 0xdb, 0xaa, 0x3c, 0x3d, 0x4d, 0x73, 0xcf, 0x4e, 0xd3, 0xdc, 0xdf, - 0xa7, 0x69, 0xee, 0xa7, 0xb3, 0x74, 0xe8, 0xd9, 0x59, 0x3a, 0xf4, 0xd7, 0x59, 0x3a, 0xf4, 0xe5, - 0x5d, 0x59, 0x31, 0x8e, 0xba, 0xf5, 0xbc, 0x84, 0xdb, 0x05, 0x76, 0x51, 0xa3, 0xd4, 0xa5, 0x75, - 0x19, 0x17, 0x7a, 0x1f, 0x14, 0xda, 0xb8, 0xd1, 0x6d, 0x21, 0x9d, 0x5e, 0xf0, 0xdc, 0x7e, 0x77, - 0xdd, 0xba, 0xe3, 0x31, 0xfa, 0x1d, 0xa4, 0xd7, 0xa3, 0xe4, 0x1a, 0xe7, 0xce, 0x7f, 0x01, 0x00, - 0x00, 0xff, 0xff, 0x3c, 0xdb, 0x68, 0xa8, 0x6e, 0x12, 0x00, 0x00, + // 1191 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0xbd, 0x6f, 0xdb, 0x46, + 0x14, 0x17, 0x65, 0x59, 0xb2, 0x9f, 0xdc, 0x48, 0xa1, 0x93, 0x58, 0xa1, 0x6d, 0x49, 0xf5, 0x10, + 0xbb, 0x6e, 0x2d, 0xc5, 0x4a, 0x3f, 0x90, 0xa0, 0x40, 0x61, 0xab, 0x2a, 0x6a, 0xa0, 0xfe, 0x00, + 0x25, 0x17, 0x68, 0x52, 0x54, 0xb0, 0xa8, 0x0b, 0x4d, 0x48, 0xe2, 0xa9, 0x24, 0xa5, 0x44, 0x5b, + 0xd1, 0xc9, 0xf0, 0x50, 0x74, 0xe8, 0x6a, 0xa0, 0x40, 0xa7, 0x6e, 0x99, 0xb2, 0x77, 0xcb, 0x98, + 0xb1, 0x28, 0xd0, 0xa0, 0xb0, 0x87, 0xfc, 0x1b, 0x05, 0xef, 0x8e, 0x14, 0x45, 0x91, 0x12, 0x13, + 0x2b, 0xde, 0xc8, 0xf7, 0x7e, 0xf7, 0x3e, 0x7e, 0xbf, 0xe3, 0xe3, 0x91, 0xb0, 0xa4, 0xd4, 0xa4, + 0xbc, 0x84, 0x35, 0x94, 0x97, 0x8e, 0x8f, 0x54, 0x15, 0x35, 0xf3, 0xdd, 0xcd, 0xbc, 0xf1, 0x34, + 0xd7, 0xd6, 0xb0, 0x81, 0xf9, 0x79, 0xa5, 0x26, 0xe5, 0x4c, 0x6f, 0x8e, 0x79, 0x73, 0xdd, 0x4d, + 0xe1, 0x86, 0x8c, 0x65, 0x4c, 0xfc, 0x79, 0xf3, 0x8a, 0x42, 0x85, 0x4c, 0x3f, 0x50, 0x53, 0x41, + 0xaa, 0x61, 0xc6, 0xa1, 0x57, 0x0c, 0xf0, 0xbe, 0x57, 0x26, 0x2b, 0x2c, 0x85, 0x2c, 0x48, 0x58, + 0x6f, 0x61, 0x3d, 0xdf, 0xd2, 0x65, 0xd3, 0xd9, 0xd2, 0x65, 0xea, 0x58, 0xf9, 0x8d, 0x03, 0x7e, + 0x57, 0x97, 0x8b, 0x14, 0xbd, 0xdf, 0x46, 0xea, 0x8e, 0xaa, 0x18, 0xfc, 0x02, 0xc4, 0xda, 0x58, + 0x33, 0xaa, 0x4a, 0x3d, 0xc5, 0x65, 0xb9, 0xb5, 0x59, 0x31, 0x6a, 0xde, 0xee, 0xd4, 0xf9, 0xcf, + 0x21, 0xc6, 0x22, 0xa7, 0xc2, 0x59, 0x6e, 0x2d, 0x5e, 0x58, 0xca, 0x79, 0x74, 0x92, 0x63, 0xf1, + 0xb6, 0x23, 0x2f, 0x5e, 0x65, 0x42, 0xa2, 0xb5, 0x84, 0xbf, 0x05, 0x51, 0x5d, 0x91, 0x55, 0xa4, + 0xa5, 0xa6, 0x68, 0x54, 0x7a, 0xf7, 0x20, 0x71, 0xf2, 0x7b, 0x26, 0xf4, 0xf3, 0xeb, 0x67, 0xeb, + 0xcc, 0xb0, 0xf2, 0x08, 0x84, 0xe1, 0xaa, 0x44, 0xa4, 0xb7, 0xb1, 0xaa, 0x23, 0x7e, 0x19, 0x80, + 0x45, 0xec, 0x17, 0x38, 0xcb, 0x2c, 0x3b, 0x75, 0x3e, 0x05, 0xb1, 0x2e, 0xd2, 0x74, 0x05, 0xab, + 0xa4, 0xc6, 0x59, 0xd1, 0xba, 0x7d, 0x10, 0x31, 0xf3, 0xac, 0xbc, 0x0a, 0xc3, 0xf5, 0xc1, 0xe8, + 0x15, 0xad, 0xe7, 0xdf, 0x72, 0x01, 0xe6, 0xdb, 0x1a, 0xea, 0x2a, 0xb8, 0xa3, 0x57, 0x1d, 0x69, + 0x49, 0xe8, 0xed, 0x70, 0x8a, 0x13, 0xaf, 0x5b, 0xee, 0xa2, 0x5d, 0x82, 0x83, 0xa6, 0xa9, 0x37, + 0xa7, 0x69, 0x13, 0x6e, 0x48, 0xb8, 0xa3, 0x1a, 0x48, 0x6b, 0x1f, 0x69, 0x46, 0xaf, 0x6a, 0x75, + 0x13, 0x21, 0x75, 0xcd, 0x3b, 0x7d, 0xdf, 0x52, 0x97, 0x49, 0x49, 0x5b, 0xc3, 0xf8, 0x71, 0x55, + 0x51, 0x15, 0x23, 0x35, 0x9d, 0xe5, 0xd6, 0xe6, 0xc4, 0x59, 0x62, 0x21, 0x7a, 0x16, 0x61, 0x8e, + 0xba, 0x8f, 0x91, 0x22, 0x1f, 0x1b, 0xa9, 0x28, 0x29, 0x4a, 0x70, 0x14, 0x45, 0x37, 0x54, 0x77, + 0x33, 0xf7, 0x35, 0x41, 0xb0, 0x92, 0xe2, 0x64, 0x15, 0x35, 0x39, 0xd4, 0x8b, 0x8d, 0x56, 0xef, + 0x21, 0xdc, 0x1e, 0xe2, 0xd7, 0x16, 0xcf, 0xa1, 0x0e, 0x37, 0xa0, 0x8e, 0x4b, 0xd6, 0xb0, 0x4b, + 0x56, 0x26, 0xde, 0x5f, 0x43, 0xe2, 0x6d, 0x49, 0x0d, 0x7f, 0xf1, 0x46, 0xc7, 0xe4, 0x3f, 0x85, + 0x85, 0x01, 0xa6, 0x1d, 0x58, 0xba, 0x43, 0x6f, 0x3a, 0xdd, 0x7d, 0x7d, 0xdf, 0x42, 0xa1, 0x45, + 0xa0, 0x7a, 0x54, 0x0d, 0xad, 0xc7, 0x04, 0x9a, 0x21, 0x06, 0x73, 0xf3, 0x5d, 0xad, 0x3e, 0x8b, + 0x6e, 0x7d, 0xb6, 0xa4, 0x86, 0xa5, 0xcf, 0xca, 0x3f, 0x1c, 0xdc, 0x1c, 0xf4, 0x16, 0xb1, 0xfa, + 0x58, 0xd1, 0x5a, 0x6f, 0x4d, 0xb2, 0xdd, 0xf9, 0x91, 0xd4, 0x20, 0xb4, 0x5a, 0x9d, 0x9b, 0xca, + 0xb9, 0x3b, 0x8f, 0x5c, 0xae, 0xf3, 0xe9, 0xd1, 0x9d, 0x67, 0x60, 0xd9, 0xb3, 0x37, 0xbb, 0xfb, + 0x2e, 0xcc, 0xf7, 0x01, 0xc5, 0x26, 0xd6, 0xd1, 0xe8, 0x79, 0x38, 0xa6, 0xf5, 0xc0, 0x03, 0x6f, + 0x19, 0x16, 0x3d, 0xf2, 0xda, 0x65, 0xfd, 0xcb, 0xc1, 0x2d, 0x97, 0xff, 0xb2, 0xaa, 0x0c, 0x4e, + 0x8c, 0xa9, 0x71, 0x13, 0xe3, 0xdd, 0xea, 0x92, 0x85, 0xb4, 0x77, 0x7b, 0x36, 0x03, 0x17, 0x1c, + 0xbc, 0xb7, 0xab, 0xcb, 0x22, 0x92, 0xba, 0x07, 0x47, 0x52, 0x03, 0x19, 0xfc, 0x7d, 0x88, 0xb6, + 0xc9, 0x15, 0xe9, 0x3b, 0x5e, 0x58, 0xf4, 0x1c, 0xb1, 0x14, 0xcc, 0x8a, 0x63, 0x0b, 0xf8, 0x0f, + 0x20, 0x49, 0x9b, 0x93, 0x70, 0xab, 0xa5, 0x18, 0x2d, 0xa4, 0x1a, 0x84, 0xa0, 0x39, 0x31, 0x41, + 0xec, 0x45, 0xdb, 0x3c, 0xc4, 0xc3, 0xd4, 0xe5, 0x78, 0x88, 0x8c, 0xe6, 0xe1, 0x07, 0xf2, 0xec, + 0xf5, 0x9b, 0xb4, 0xa7, 0xe6, 0x17, 0x10, 0xd5, 0x90, 0xde, 0x69, 0xd2, 0x66, 0xaf, 0x15, 0x56, + 0x3d, 0x9b, 0xb5, 0xe0, 0x22, 0x81, 0x56, 0x7a, 0x6d, 0x24, 0xb2, 0x65, 0x6c, 0x7a, 0xfe, 0x12, + 0x06, 0xd8, 0xd5, 0xe5, 0x8a, 0xd2, 0x42, 0xb8, 0x33, 0x19, 0x0a, 0x3b, 0xaa, 0x86, 0x24, 0xa4, + 0x74, 0x51, 0x7d, 0x80, 0xc2, 0x43, 0xdb, 0x3c, 0x19, 0x0a, 0x3f, 0x02, 0x5e, 0x45, 0x4f, 0x8d, + 0xaa, 0x8e, 0x7e, 0xec, 0x20, 0x55, 0x42, 0x55, 0x0d, 0x49, 0x5d, 0x42, 0x67, 0x44, 0x4c, 0x9a, + 0x9e, 0x32, 0x73, 0x98, 0xe4, 0x05, 0xdf, 0x78, 0x8f, 0xc8, 0xf1, 0x87, 0xf1, 0x31, 0x69, 0xb6, + 0x9f, 0xd3, 0x77, 0x15, 0x8b, 0xbe, 0xaf, 0x92, 0x8d, 0x7d, 0x45, 0xa4, 0x67, 0x20, 0xce, 0xb6, + 0xb8, 0x99, 0x94, 0x3d, 0xdf, 0xf4, 0x89, 0xa7, 0x65, 0x4c, 0xe4, 0x01, 0xf7, 0x56, 0x65, 0x7a, + 0xac, 0x2a, 0xd1, 0xd1, 0xaa, 0xd4, 0xc8, 0x0b, 0x6a, 0x90, 0xb7, 0x49, 0x8b, 0x73, 0x12, 0x26, + 0xd2, 0x6f, 0x49, 0x0d, 0x15, 0x3f, 0x69, 0xa2, 0xba, 0x8c, 0xc8, 0xf3, 0x7e, 0x09, 0x75, 0xd6, + 0x20, 0x71, 0x34, 0x18, 0xcd, 0x12, 0xc7, 0x65, 0xee, 0x8b, 0x63, 0x2e, 0xac, 0x0f, 0x88, 0xb3, + 0x65, 0x5a, 0xae, 0x78, 0xfa, 0x4a, 0xe4, 0xb4, 0xed, 0x62, 0x62, 0xc2, 0x7c, 0xaf, 0xff, 0xc9, + 0x01, 0x3f, 0x0c, 0xe2, 0x3f, 0x81, 0xac, 0x58, 0x2a, 0x1f, 0xec, 0xef, 0x95, 0x4b, 0x55, 0xb1, + 0x54, 0x3e, 0xfc, 0xa6, 0x52, 0xad, 0x7c, 0x77, 0x50, 0xaa, 0x1e, 0xee, 0x95, 0x0f, 0x4a, 0xc5, + 0x9d, 0xaf, 0x76, 0x4a, 0x5f, 0x26, 0x43, 0x42, 0xe2, 0xf4, 0x2c, 0x1b, 0x77, 0x98, 0xf8, 0x55, + 0xb8, 0xed, 0xb9, 0x6c, 0x6f, 0x7f, 0xff, 0x20, 0xc9, 0x09, 0x33, 0xa7, 0x67, 0xd9, 0x88, 0x79, + 0xcd, 0x6f, 0xc0, 0x92, 0x27, 0xb0, 0x7c, 0x58, 0x2c, 0x96, 0xca, 0xe5, 0x64, 0x58, 0x88, 0x9f, + 0x9e, 0x65, 0x63, 0xec, 0x56, 0x88, 0x9c, 0xfc, 0x91, 0x0e, 0x15, 0x9e, 0xcf, 0xc0, 0xd4, 0xae, + 0x2e, 0xf3, 0x0d, 0x48, 0xb8, 0xbf, 0x8c, 0xbc, 0xbb, 0x1f, 0xfe, 0x58, 0x11, 0xf2, 0x01, 0x81, + 0x36, 0xcf, 0xc7, 0x70, 0xcd, 0xf5, 0x49, 0x72, 0x27, 0x40, 0x88, 0x8a, 0xd6, 0x13, 0x72, 0xc1, + 0x70, 0x3e, 0x99, 0xcc, 0x53, 0x58, 0x90, 0x4c, 0x5b, 0x52, 0x23, 0x50, 0x26, 0xc7, 0x61, 0x92, + 0x37, 0x80, 0xf7, 0x38, 0x48, 0xae, 0x07, 0x88, 0xc2, 0xb0, 0x42, 0x21, 0x38, 0xd6, 0xce, 0xaa, + 0x42, 0x72, 0xe8, 0x04, 0xb7, 0x36, 0x26, 0x8e, 0x8d, 0x14, 0xee, 0x06, 0x45, 0xda, 0xf9, 0x9e, + 0xc0, 0xbc, 0xd7, 0xc9, 0xec, 0xc3, 0x20, 0x81, 0xac, 0x3e, 0xef, 0xbd, 0x01, 0xd8, 0x4e, 0xfc, + 0x3d, 0x80, 0xe3, 0x40, 0xb4, 0xe2, 0x17, 0xa2, 0x8f, 0x11, 0xd6, 0xc7, 0x63, 0xec, 0xe8, 0x65, + 0x88, 0x59, 0x07, 0x85, 0x8c, 0xdf, 0x32, 0x06, 0x10, 0x56, 0xc7, 0x00, 0x9c, 0x7b, 0xcf, 0xf5, + 0x3e, 0xbc, 0x33, 0x66, 0x29, 0xc3, 0xf9, 0xef, 0x3d, 0x9f, 0xf7, 0x44, 0x03, 0x12, 0xee, 0xe1, + 0xee, 0x5b, 0xa5, 0x0b, 0xe8, 0xff, 0xf0, 0xfa, 0x0c, 0x49, 0x61, 0xfa, 0xa7, 0xd7, 0xcf, 0xd6, + 0xb9, 0xed, 0xf2, 0x8b, 0xf3, 0x34, 0xf7, 0xf2, 0x3c, 0xcd, 0xfd, 0x77, 0x9e, 0xe6, 0x7e, 0xbd, + 0x48, 0x87, 0x5e, 0x5e, 0xa4, 0x43, 0x7f, 0x5f, 0xa4, 0x43, 0x0f, 0xef, 0xcb, 0x8a, 0x71, 0xdc, + 0xa9, 0xe5, 0x24, 0xdc, 0xca, 0xb3, 0x9f, 0x31, 0x4a, 0x4d, 0xda, 0x90, 0x71, 0xbe, 0xfb, 0x59, + 0xbe, 0x85, 0xeb, 0x9d, 0x26, 0xd2, 0xe9, 0x4f, 0x9c, 0xbb, 0x1f, 0x6f, 0x58, 0xff, 0x71, 0x8c, + 0x5e, 0x1b, 0xe9, 0xb5, 0x28, 0xf9, 0x55, 0x73, 0xef, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x18, + 0xc3, 0x02, 0x4e, 0x52, 0x12, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/proto/ibc/applications/fee/v1/tx.proto b/proto/ibc/applications/fee/v1/tx.proto index bec16873897..9c48974931b 100644 --- a/proto/ibc/applications/fee/v1/tx.proto +++ b/proto/ibc/applications/fee/v1/tx.proto @@ -44,7 +44,6 @@ service Msg { message MsgRegisterPayee { option (cosmos.msg.v1.signer) = "relayer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; // unique port identifier @@ -64,7 +63,6 @@ message MsgRegisterPayeeResponse {} message MsgRegisterCounterpartyPayee { option (cosmos.msg.v1.signer) = "relayer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; // unique port identifier @@ -86,7 +84,6 @@ message MsgRegisterCounterpartyPayeeResponse {} message MsgPayPacketFee { option (cosmos.msg.v1.signer) = "signer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; // fee encapsulates the recv, ack and timeout fees associated with an IBC packet @@ -108,7 +105,6 @@ message MsgPayPacketFeeResponse {} // This Msg can be used to pay for a packet at a specified sequence (instead of the next sequence send) message MsgPayPacketFeeAsync { option (cosmos.msg.v1.signer) = "packet_fee.refundaddress"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; // unique packet identifier comprised of the channel ID, port ID and sequence diff --git a/proto/ibc/applications/interchain_accounts/controller/v1/tx.proto b/proto/ibc/applications/interchain_accounts/controller/v1/tx.proto index 01f7fc8a3e6..ed47b6e385d 100644 --- a/proto/ibc/applications/interchain_accounts/controller/v1/tx.proto +++ b/proto/ibc/applications/interchain_accounts/controller/v1/tx.proto @@ -25,7 +25,6 @@ service Msg { message MsgRegisterInterchainAccount { option (cosmos.msg.v1.signer) = "owner"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; string owner = 1; @@ -35,6 +34,8 @@ message MsgRegisterInterchainAccount { // MsgRegisterInterchainAccountResponse defines the response for Msg/RegisterAccount message MsgRegisterInterchainAccountResponse { + option (gogoproto.goproto_getters) = false; + string channel_id = 1; string port_id = 2; } @@ -43,7 +44,6 @@ message MsgRegisterInterchainAccountResponse { message MsgSendTx { option (cosmos.msg.v1.signer) = "owner"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; string owner = 1; @@ -56,12 +56,17 @@ message MsgSendTx { // MsgSendTxResponse defines the response for MsgSendTx message MsgSendTxResponse { + option (gogoproto.goproto_getters) = false; + uint64 sequence = 1; } + // MsgUpdateParams defines the payload for Msg/UpdateParams message MsgUpdateParams { option (cosmos.msg.v1.signer) = "authority"; + option (gogoproto.goproto_getters) = false; + // authority is the address that controls the module (defaults to x/gov unless overwritten). string authority = 1; diff --git a/proto/ibc/applications/interchain_accounts/host/v1/tx.proto b/proto/ibc/applications/interchain_accounts/host/v1/tx.proto index 9c9f497b537..727c50149d5 100644 --- a/proto/ibc/applications/interchain_accounts/host/v1/tx.proto +++ b/proto/ibc/applications/interchain_accounts/host/v1/tx.proto @@ -20,6 +20,8 @@ service Msg { message MsgUpdateParams { option (cosmos.msg.v1.signer) = "authority"; + option (gogoproto.goproto_getters) = false; + // authority is the address that controls the module (defaults to x/gov unless overwritten). string authority = 1; diff --git a/proto/ibc/applications/transfer/v1/tx.proto b/proto/ibc/applications/transfer/v1/tx.proto index a75f9b2190a..61bbaa79e5d 100644 --- a/proto/ibc/applications/transfer/v1/tx.proto +++ b/proto/ibc/applications/transfer/v1/tx.proto @@ -27,7 +27,6 @@ service Msg { message MsgTransfer { option (cosmos.msg.v1.signer) = "sender"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; // the port on which the packet will be sent @@ -52,6 +51,8 @@ message MsgTransfer { // MsgTransferResponse defines the Msg/Transfer response type. message MsgTransferResponse { + option (gogoproto.goproto_getters) = false; + // sequence number of the transfer packet sent uint64 sequence = 1; } @@ -60,6 +61,8 @@ message MsgTransferResponse { message MsgUpdateParams { option (cosmos.msg.v1.signer) = "authority"; + option (gogoproto.goproto_getters) = false; + // authority is the address that controls the module (defaults to x/gov unless overwritten). string authority = 1; diff --git a/proto/ibc/core/channel/v1/tx.proto b/proto/ibc/core/channel/v1/tx.proto index b7899f22278..66c6b2a48df 100644 --- a/proto/ibc/core/channel/v1/tx.proto +++ b/proto/ibc/core/channel/v1/tx.proto @@ -62,7 +62,6 @@ enum ResponseResultType { message MsgChannelOpenInit { option (cosmos.msg.v1.signer) = "signer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; string port_id = 1; @@ -72,6 +71,8 @@ message MsgChannelOpenInit { // MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type. message MsgChannelOpenInitResponse { + option (gogoproto.goproto_getters) = false; + string channel_id = 1; string version = 2; } @@ -82,7 +83,6 @@ message MsgChannelOpenInitResponse { message MsgChannelOpenTry { option (cosmos.msg.v1.signer) = "signer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; string port_id = 1; @@ -98,6 +98,8 @@ message MsgChannelOpenTry { // MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type. message MsgChannelOpenTryResponse { + option (gogoproto.goproto_getters) = false; + string version = 1; string channel_id = 2; } @@ -107,7 +109,6 @@ message MsgChannelOpenTryResponse { message MsgChannelOpenAck { option (cosmos.msg.v1.signer) = "signer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; string port_id = 1; @@ -127,7 +128,6 @@ message MsgChannelOpenAckResponse {} message MsgChannelOpenConfirm { option (cosmos.msg.v1.signer) = "signer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; string port_id = 1; @@ -146,7 +146,6 @@ message MsgChannelOpenConfirmResponse {} message MsgChannelCloseInit { option (cosmos.msg.v1.signer) = "signer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; string port_id = 1; @@ -162,7 +161,6 @@ message MsgChannelCloseInitResponse {} message MsgChannelCloseConfirm { option (cosmos.msg.v1.signer) = "signer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; string port_id = 1; @@ -180,7 +178,6 @@ message MsgChannelCloseConfirmResponse {} message MsgRecvPacket { option (cosmos.msg.v1.signer) = "signer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; Packet packet = 1 [(gogoproto.nullable) = false]; @@ -200,7 +197,6 @@ message MsgRecvPacketResponse { message MsgTimeout { option (cosmos.msg.v1.signer) = "signer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; Packet packet = 1 [(gogoproto.nullable) = false]; @@ -221,7 +217,6 @@ message MsgTimeoutResponse { message MsgTimeoutOnClose { option (cosmos.msg.v1.signer) = "signer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; Packet packet = 1 [(gogoproto.nullable) = false]; @@ -243,7 +238,6 @@ message MsgTimeoutOnCloseResponse { message MsgAcknowledgement { option (cosmos.msg.v1.signer) = "signer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; Packet packet = 1 [(gogoproto.nullable) = false]; diff --git a/proto/ibc/core/client/v1/tx.proto b/proto/ibc/core/client/v1/tx.proto index 7d37fd590d3..76efcc7e7b1 100644 --- a/proto/ibc/core/client/v1/tx.proto +++ b/proto/ibc/core/client/v1/tx.proto @@ -33,7 +33,6 @@ service Msg { message MsgCreateClient { option (cosmos.msg.v1.signer) = "signer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; // light client state @@ -53,7 +52,6 @@ message MsgCreateClientResponse {} message MsgUpdateClient { option (cosmos.msg.v1.signer) = "signer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; // client unique identifier @@ -72,7 +70,6 @@ message MsgUpdateClientResponse {} message MsgUpgradeClient { option (cosmos.msg.v1.signer) = "signer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; // client unique identifier @@ -100,7 +97,6 @@ message MsgSubmitMisbehaviour { option deprecated = true; option (cosmos.msg.v1.signer) = "signer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; // client unique identifier @@ -119,6 +115,8 @@ message MsgSubmitMisbehaviourResponse {} message MsgUpdateParams { option (cosmos.msg.v1.signer) = "authority"; + option (gogoproto.goproto_getters) = false; + // authority is the address of the governance account. string authority = 1; diff --git a/proto/ibc/core/connection/v1/tx.proto b/proto/ibc/core/connection/v1/tx.proto index f1aaeea7b67..5bba1821980 100644 --- a/proto/ibc/core/connection/v1/tx.proto +++ b/proto/ibc/core/connection/v1/tx.proto @@ -37,7 +37,6 @@ service Msg { message MsgConnectionOpenInit { option (cosmos.msg.v1.signer) = "signer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; string client_id = 1; @@ -56,7 +55,6 @@ message MsgConnectionOpenInitResponse {} message MsgConnectionOpenTry { option (cosmos.msg.v1.signer) = "signer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; string client_id = 1; @@ -88,7 +86,6 @@ message MsgConnectionOpenTryResponse {} message MsgConnectionOpenAck { option (cosmos.msg.v1.signer) = "signer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; string connection_id = 1; @@ -117,7 +114,6 @@ message MsgConnectionOpenAckResponse {} message MsgConnectionOpenConfirm { option (cosmos.msg.v1.signer) = "signer"; - option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; string connection_id = 1; @@ -135,6 +131,8 @@ message MsgConnectionOpenConfirmResponse {} message MsgUpdateParams { option (cosmos.msg.v1.signer) = "authority"; + option (gogoproto.goproto_getters) = false; + // authority is the address that controls the module (defaults to x/gov unless overwritten). string authority = 1;