Skip to content

Commit

Permalink
app: increment halt counter
Browse files Browse the repository at this point in the history
penumbra: update `COMPATIBILTIY.md`

app: increment `APP_VERSION`

add docstring comment for APP_VERSION
  • Loading branch information
erwanor authored and conorsch committed Mar 28, 2024
1 parent ccc8280 commit 42bf675
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
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;
/// 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

0 comments on commit 42bf675

Please sign in to comment.