Skip to content

Commit

Permalink
fix: reset TOTAL_HALT_COUNT
Browse files Browse the repository at this point in the history
Follow-up to 0f34970, which claimed
to reset this value, but did not actually.
  • Loading branch information
conorsch committed May 10, 2024
1 parent 0f34970 commit 865576d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/core/app/src/app/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 865576d

Please sign in to comment.