Skip to content

Commit

Permalink
chore: change abci client priorities
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Jan 11, 2024
1 parent ea83b4f commit 98025f6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions abci/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,14 @@ func (reqResp *requestAndResponse) priority() (priority int8) {
priority = 100
case *types.Request_FinalizeBlock:
priority = 100
case *types.Request_Flush:
priority = 100
case *types.Request_ExtendVote:
priority = 100
case *types.Request_VerifyVoteExtension:
priority = 100
case *types.Request_Info:
priority = 90
case *types.Request_Info:
priority = 120
case *types.Request_CheckTx:
priority = -10
case *types.Request_Query:
Expand Down

0 comments on commit 98025f6

Please sign in to comment.