Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

app: increment halt counter #4127

Merged
merged 1 commit into from
Mar 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion COMPATIBILITY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
| Application version (Name)| Penumbra crate version | CometBFT | Protobuf |
| ------------------------- | ---------------------- | -------- | -------- |
| 1 (Testnet 69) | v0.69.1 | v0.37.5 | v1 |
| 1 (Testnet 70) | v0.70.x | v0.37.5 | v1 |
| 2 (Testnet 71) | v0.71.x | v0.37.5 | v1 |
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 @@ -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 {
Expand Down
4 changes: 3 additions & 1 deletion crates/core/app/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ pub use crate::{

use once_cell::sync::Lazy;

pub const APP_VERSION: u64 = 1;
erwanor marked this conversation as resolved.
Show resolved Hide resolved
/// Representation of the Penumbra application version. Notably, this is distinct
/// from the crate version(s). This number should only ever be incremented.
pub const APP_VERSION: u64 = 2;

pub static SUBSTORE_PREFIXES: Lazy<Vec<String>> = Lazy::new(|| {
vec![
Expand Down
Loading