We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e48ce01 commit c4ee76dCopy full SHA for c4ee76d
core/application/src/env.rs
@@ -56,7 +56,7 @@ impl Env<UpdatePerm> {
56
57
let mut db_path = db_path.to_path_buf();
58
59
- db_path.push("-v2");
+ db_path.push("-v3");
60
61
let mut db_options = if let Some(db_options) = config.db_options.as_ref() {
62
let (options, _) = Options::load_latest(
core/consensus/src/consensus.rs
@@ -478,7 +478,7 @@ impl<C: Collection> ConsensusInterface<C> for Consensus<C> {
478
479
let mut store_path = config.store_path.clone();
480
481
- store_path.push("-v2");
+ store_path.push("-v3");
482
483
let epoch_state = EpochState::new(
484
query_runner,
0 commit comments