From 15333362e6be53e7f2184e97cb5b05105fe69936 Mon Sep 17 00:00:00 2001 From: satan Date: Fri, 24 Mar 2023 16:32:40 +0100 Subject: [PATCH] [fix]: Suspending and halting now works for syncing the chain --- apps/src/lib/node/ledger/shims/abcipp_shim.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/src/lib/node/ledger/shims/abcipp_shim.rs b/apps/src/lib/node/ledger/shims/abcipp_shim.rs index 75b815bb56..09fe9f2f32 100644 --- a/apps/src/lib/node/ledger/shims/abcipp_shim.rs +++ b/apps/src/lib/node/ledger/shims/abcipp_shim.rs @@ -319,8 +319,8 @@ impl AbciService { match req { Req::PrepareProposal(req) => Some(CheckAction::Check(req.height)), Req::ProcessProposal(req) => Some(CheckAction::Check(req.height)), - Req::EndBlock(_) - | Req::BeginBlock(_) + Req::EndBlock(req) => Some(CheckAction::Check(req.height)), + Req::BeginBlock(_) | Req::DeliverTx(_) | Req::InitChain(_) | Req::CheckTx(_)