types: add string format to 64-bit integer JSON fields (#7787)

This picks up a few remaining cases that I missed during my previous round of
adding these tags.
This commit is contained in:
M. J. Fromberger
2022-02-09 13:34:23 +00:00
committed by GitHub
parent 27ccf3b590
commit 205bfca66f
3 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -208,7 +208,7 @@ type ResultValidators struct {
// ConsensusParams for given height
type ResultConsensusParams struct {
BlockHeight int64 `json:"block_height"`
BlockHeight int64 `json:"block_height,string"`
ConsensusParams types.ConsensusParams `json:"consensus_params"`
}