Skip to content

Commit

Permalink
increment epoch
Browse files Browse the repository at this point in the history
  • Loading branch information
daltoncoder committed Sep 7, 2023
1 parent e48ce01 commit c4ee76d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/application/src/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ impl Env<UpdatePerm> {

let mut db_path = db_path.to_path_buf();

db_path.push("-v2");
db_path.push("-v3");

let mut db_options = if let Some(db_options) = config.db_options.as_ref() {
let (options, _) = Options::load_latest(
Expand Down
2 changes: 1 addition & 1 deletion core/consensus/src/consensus.rs
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ impl<C: Collection> ConsensusInterface<C> for Consensus<C> {

let mut store_path = config.store_path.clone();

store_path.push("-v2");
store_path.push("-v3");

let epoch_state = EpochState::new(
query_runner,
Expand Down

0 comments on commit c4ee76d

Please sign in to comment.