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

fix: add chain id to get tss address rpc #1567

Merged
merged 4 commits into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
* [1525](https://github.com/zeta-chain/node/pull/1525) - relax EVM chain block header length check 1024->4096
* [1522](https://github.com/zeta-chain/node/pull/1522/files) - block `distribution` module account from receiving zeta
* [1528](https://github.com/zeta-chain/node/pull/1528) - fix panic caused on decoding malformed BTC addresses
* * [1567](https://github.com/zeta-chain/node/pull/1567) - add bitcoin chain id to fetch the tss address rpc endpoint

### Refactoring

Expand Down
6 changes: 3 additions & 3 deletions docs/openapi/openapi.swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27817,7 +27817,7 @@ paths:
format: int64
tags:
- Query
/zeta-chain/observer/get_tss_address:
/zeta-chain/observer/get_tss_address/{bitcoin_chain_id}:
get:
summary: Queries a list of GetTssAddress items.
operationId: Query_GetTssAddress
Expand All @@ -27832,8 +27832,8 @@ paths:
$ref: '#/definitions/googlerpcStatus'
parameters:
- name: bitcoin_chain_id
in: query
required: false
in: path
required: true
type: string
format: int64
tags:
Expand Down
2 changes: 1 addition & 1 deletion proto/observer/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ service Query {

// Queries a list of GetTssAddress items.
rpc GetTssAddress(QueryGetTssAddressRequest) returns (QueryGetTssAddressResponse) {
option (google.api.http).get = "/zeta-chain/observer/get_tss_address";
option (google.api.http).get = "/zeta-chain/observer/get_tss_address/{bitcoin_chain_id}";
}

rpc GetTssAddressByFinalizedHeight(QueryGetTssAddressByFinalizedHeightRequest) returns (QueryGetTssAddressByFinalizedHeightResponse) {
Expand Down
Loading
Loading