From 5d2bf045020a3ec30eb95638e26176f7b60c1ff2 Mon Sep 17 00:00:00 2001 From: Daniel Wedul Date: Mon, 6 Feb 2023 10:54:39 -0700 Subject: [PATCH] Fix a few listener proto comments. (#499) --- CHANGELOG.md | 1 + proto/cosmos/streaming/abci/v1/grpc.proto | 6 +++--- streaming/plugins/abci/v1/grpc.pb.go | 6 +++--- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fab6b5d4e0a8..0a90e9e323a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -42,6 +42,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ ### Improvements * [#498](https://github.com/provenance-io/cosmos-sdk/pull/498) Bump Tendermint to v0.34.25 (from v0.34.24). +* [#499](https://github.com/provenance-io/cosmos-sdk/pull/499) Fix a few listener proto comments. --- diff --git a/proto/cosmos/streaming/abci/v1/grpc.proto b/proto/cosmos/streaming/abci/v1/grpc.proto index 06b3f3021684..f7ce91bc72e1 100644 --- a/proto/cosmos/streaming/abci/v1/grpc.proto +++ b/proto/cosmos/streaming/abci/v1/grpc.proto @@ -22,7 +22,7 @@ message ListenEndBlockRequest { tendermint.abci.ResponseEndBlock res = 2; } -// ListenBeginBlockResponse is the response type for the ListenEndBlock RPC method +// ListenEndBlockResponse is the response type for the ListenEndBlock RPC method message ListenEndBlockResponse {} // ListenDeliverTxRequest is the request type for the ListenDeliverTx RPC method @@ -33,7 +33,7 @@ message ListenDeliverTxRequest { tendermint.abci.ResponseDeliverTx res = 3; } -// ListenBeginBlockResponse is the response type for the ListenDeliverTx RPC method +// ListenDeliverTxResponse is the response type for the ListenDeliverTx RPC method message ListenDeliverTxResponse {} // ListenCommitRequest is the request type for the ListenCommit RPC method @@ -44,7 +44,7 @@ message ListenCommitRequest { repeated cosmos.base.store.v1beta1.StoreKVPair change_set = 3; } -// ListenBeginBlockResponse is the response type for the ListenCommit RPC method +// ListenCommitResponse is the response type for the ListenCommit RPC method message ListenCommitResponse {} // ABCIListenerService is the service for the BaseApp ABCIListener interface diff --git a/streaming/plugins/abci/v1/grpc.pb.go b/streaming/plugins/abci/v1/grpc.pb.go index d0e21723d5e1..3aa16713ed42 100644 --- a/streaming/plugins/abci/v1/grpc.pb.go +++ b/streaming/plugins/abci/v1/grpc.pb.go @@ -172,7 +172,7 @@ func (m *ListenEndBlockRequest) GetRes() *types.ResponseEndBlock { return nil } -// ListenBeginBlockResponse is the response type for the ListenEndBlock RPC method +// ListenEndBlockResponse is the response type for the ListenEndBlock RPC method type ListenEndBlockResponse struct { } @@ -271,7 +271,7 @@ func (m *ListenDeliverTxRequest) GetRes() *types.ResponseDeliverTx { return nil } -// ListenBeginBlockResponse is the response type for the ListenDeliverTx RPC method +// ListenDeliverTxResponse is the response type for the ListenDeliverTx RPC method type ListenDeliverTxResponse struct { } @@ -370,7 +370,7 @@ func (m *ListenCommitRequest) GetChangeSet() []*types1.StoreKVPair { return nil } -// ListenBeginBlockResponse is the response type for the ListenCommit RPC method +// ListenCommitResponse is the response type for the ListenCommit RPC method type ListenCommitResponse struct { }