Skip to content

Commit c4ee76d

Browse files
committed
increment epoch
1 parent e48ce01 commit c4ee76d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/application/src/env.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ impl Env<UpdatePerm> {
5656

5757
let mut db_path = db_path.to_path_buf();
5858

59-
db_path.push("-v2");
59+
db_path.push("-v3");
6060

6161
let mut db_options = if let Some(db_options) = config.db_options.as_ref() {
6262
let (options, _) = Options::load_latest(

core/consensus/src/consensus.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ impl<C: Collection> ConsensusInterface<C> for Consensus<C> {
478478

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

481-
store_path.push("-v2");
481+
store_path.push("-v3");
482482

483483
let epoch_state = EpochState::new(
484484
query_runner,

0 commit comments

Comments
 (0)