You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The pagination in the return result of this gRPC call to cosmos.base.tendermint.Service. GetValidatorSetByHeight is always undefined even if a PageRequest is already set in the GetValidatorSetByHeightRequest. The validator set will return maximum of 100 validators without the pagination key to query the next page. The corresponding legacy API doesn't work.
Version
v0.40.1
Steps to Reproduce
Desmos testnet currently have 125 validators. The validators set queried by this gRPC call only shows 100 validators.
Summary of Bug
The
pagination
in the return result of this gRPC call tocosmos.base.tendermint.Service. GetValidatorSetByHeight
is alwaysundefined
even if aPageRequest
is already set in theGetValidatorSetByHeightRequest
. The validator set will return maximum of 100 validators without the pagination key to query the next page. The corresponding legacy API doesn't work.Version
v0.40.1
Steps to Reproduce
Desmos
testnet currently have 125 validators. The validators set queried by this gRPC call only shows 100 validators.Query validator set directly from Tendermint RPC
http://rpc.morpheus.desmos.network:26657/validators?height=300516
Query validator set using legacy API
http://lcd.morpheus.desmos.network:1317/cosmos/base/tendermint/v1beta1/validatorsets/300516
Query validator set using legacy API with Tendermint RPC
It returns result with 100 validators without pagination information.
Query validator set using tendermint.Service.GetValidatorSetByHeight via gRPC-web in node.js
The returned result is an array of 100 validators with
pagination
undefined.For Admin Use
The text was updated successfully, but these errors were encountered: