Skip to content

Commit

Permalink
feat: remove prove field in the GetTxsEventRequest of tx proto. (
Browse files Browse the repository at this point in the history
…#584)

* feat: remove `prove` field in the `GetTxsEventRequest` of `tx` proto.

Signed-off-by: zemyblue <zemyblue@gmail.com>

* doc: update changelog

Signed-off-by: zemyblue <zemyblue@gmail.com>
  • Loading branch information
zemyblue authored Jul 8, 2022
1 parent df0f33b commit 5fabafa
Show file tree
Hide file tree
Showing 6 changed files with 66 additions and 117 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
* (x/wasm) [\#513](https://github.com/line/lbm-sdk/pull/513) fix message representation for signing
* (x/foundation) [\#518](https://github.com/line/lbm-sdk/pull/518) add foundation treasury feature to x/foundation
* (x/foundation) [\#528](https://github.com/line/lbm-sdk/pull/528) add a feature of whitelist for /lbm.foundation.v1.MsgWithdrawFromTreasury
* (proto) [\#584](https://github.com/line/lbm-sdk/pull/564) remove `prove` field in the `GetTxsEventRequest` of `tx` proto

### Improvements

Expand Down
9 changes: 4 additions & 5 deletions client/docs/statik/statik.go

Large diffs are not rendered by default.

6 changes: 0 additions & 6 deletions client/docs/swagger-ui/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21431,12 +21431,6 @@ paths:
items:
type: string
collectionFormat: multi
- name: prove
description: prove is Include proofs of the transactions inclusion in the block.
in: query
required: false
type: boolean
format: boolean
- name: pagination.key
description: |-
key is a value returned in PageResponse.next_key to begin
Expand Down
1 change: 0 additions & 1 deletion docs/core/proto-docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -8041,7 +8041,6 @@ RPC method.
| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| `events` | [string](#string) | repeated | events is the list of transaction event type. |
| `prove` | [bool](#bool) | | prove is Include proofs of the transactions inclusion in the block |
| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an pagination for the request. |
| `order_by` | [OrderBy](#cosmos.tx.v1beta1.OrderBy) | | |

Expand Down
6 changes: 2 additions & 4 deletions proto/cosmos/tx/v1beta1/service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,9 @@ service Service {
message GetTxsEventRequest {
// events is the list of transaction event type.
repeated string events = 1;
// prove is Include proofs of the transactions inclusion in the block
bool prove = 2;
// pagination defines an pagination for the request.
cosmos.base.query.v1beta1.PageRequest pagination = 3;
OrderBy order_by = 4;
cosmos.base.query.v1beta1.PageRequest pagination = 2;
OrderBy order_by = 3;
}

// OrderBy defines the sorting order
Expand Down
160 changes: 59 additions & 101 deletions types/tx/service.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5fabafa

Please sign in to comment.