From 99b41cab7a71de137ab4d81ea414147f43cf260c Mon Sep 17 00:00:00 2001 From: Erwan Or Date: Wed, 27 Mar 2024 16:16:24 -0400 Subject: [PATCH] app: increment `TOTAL_HALT_COUNT` --- crates/core/app/src/app/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/core/app/src/app/mod.rs b/crates/core/app/src/app/mod.rs index ac3493a75c..e08991de43 100644 --- a/crates/core/app/src/app/mod.rs +++ b/crates/core/app/src/app/mod.rs @@ -619,7 +619,7 @@ impl App { /// /// Increment this manually after fixing the root cause for a chain halt: updated nodes will then be /// able to proceed past the block height of the halt. -const TOTAL_HALT_COUNT: u64 = 0; +const TOTAL_HALT_COUNT: u64 = 1; #[async_trait] pub trait StateReadExt: StateRead {