From 746316de61591fff0ddbce147471ca85b6705d77 Mon Sep 17 00:00:00 2001 From: Lukasz Cwik Date: Mon, 1 May 2023 11:41:08 -0700 Subject: [PATCH] [STAB-17] Fix unsync local client to invoke callback This was missed in https://github.com/dydxprotocol/cometbft/commit/4a837ddd72fbc5866409501e307de73c0592d8f1 and caused the chain to fail to initialize. --- abci/client/unsync_local_client.go | 1 + 1 file changed, 1 insertion(+) diff --git a/abci/client/unsync_local_client.go b/abci/client/unsync_local_client.go index a5af92cf2..9fa8caa4e 100644 --- a/abci/client/unsync_local_client.go +++ b/abci/client/unsync_local_client.go @@ -262,6 +262,7 @@ func (app *unsyncLocalClient) ProcessProposalSync(req types.RequestProcessPropos func (app *unsyncLocalClient) callback(req *types.Request, res *types.Response) *ReqRes { app.mtx.RLock() defer app.mtx.RUnlock() + app.Callback(req, res) rr := newLocalReqRes(req, res) rr.callbackInvoked = true return rr