From 548b6e53f88f6e144398a16fe3418085dc94810b Mon Sep 17 00:00:00 2001 From: Conor Schaefer Date: Fri, 10 May 2024 09:22:46 -0700 Subject: [PATCH] fix: reset TOTAL_HALT_COUNT Follow-up to 0f349704c7af88f997d2a23bf2e939a1f5ca18f0, which claimed to reset this value, but did not actually. --- 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 ea47bffb74..869c16b0fd 100644 --- a/crates/core/app/src/app/mod.rs +++ b/crates/core/app/src/app/mod.rs @@ -558,7 +558,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 = 2; +const TOTAL_HALT_COUNT: u64 = 0; #[async_trait] pub trait StateReadExt: StateRead {