Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: include transactions in QueryBlockByHeight #10880

Merged
merged 12 commits into from
Feb 22, 2022
Prev Previous commit
Next Next commit
Update proto/cosmos/tx/v1beta1/service.proto
Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
  • Loading branch information
technicallyty and amaury1093 authored Feb 21, 2022
commit f6219b00fa42c650e4a6219283fcb9fe1cd262be
2 changes: 2 additions & 0 deletions proto/cosmos/tx/v1beta1/service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ service Service {
option (google.api.http).get = "/cosmos/tx/v1beta1/txs";
}
// GetBlockWithTxs fetches a block with decoded txs.
technicallyty marked this conversation as resolved.
Show resolved Hide resolved
//
// Since: cosmos-sdk 0.45.2
rpc GetBlockWithTxs(GetBlockWithTxsRequest) returns (GetBlockWithTxsResponse) {
option (google.api.http).get = "/cosmos/tx/v1beta1/txs/block/{height}";
}
Expand Down