Skip to content

Commit

Permalink
[fix]: Suspending and halting now works for syncing the chain
Browse files Browse the repository at this point in the history
  • Loading branch information
batconjurer committed Mar 24, 2023
1 parent b58578e commit 1533336
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/src/lib/node/ledger/shims/abcipp_shim.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(_)
Expand Down

0 comments on commit 1533336

Please sign in to comment.