Skip to content

Commit

Permalink
fix(client): missing response to finalize snapshot in switch
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Jan 24, 2025
1 parent 6332f13 commit d595b00
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions abci/client/socket_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,8 @@ func resMatchesReq(req *types.Request, res *types.Response) (ok bool) {
_, ok = res.Value.(*types.Response_ListSnapshots)
case *types.Request_OfferSnapshot:
_, ok = res.Value.(*types.Response_OfferSnapshot)
case *types.Request_FinalizeSnapshot:
_, ok = res.Value.(*types.Response_FinalizeSnapshot)
case *types.Request_FinalizeBlock:
_, ok = res.Value.(*types.Response_FinalizeBlock)
}
Expand Down

0 comments on commit d595b00

Please sign in to comment.