Skip to content
Merged
54 changes: 27 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ resolver = "2"
default-members = ["cmd/ethrex"]

[workspace.package]
version = "9.0.0"
version = "10.0.0"
edition = "2024"
authors = ["LambdaClass"]
documentation = "https://docs.ethrex.xyz"
Expand Down
7 changes: 7 additions & 0 deletions cmd/ethrex/initializers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -641,6 +641,13 @@ pub fn migrate_datadir_if_needed(

// Verify chain IDs match.
let Some(db_chain_id) = read_chain_id_from_db(base_datadir) else {
warn!(
"Found a database at {base_datadir:?} with valid store metadata but could not \
read its chain ID. Skipping automatic migration to {network_datadir:?}. \
If this is a pre-v10 database you intend to reuse, stop ethrex and move its \
contents into {network_datadir:?} manually before restarting. See the logs \
above for the specific error from the storage layer."
);
return;
};
let expected_chain_id = match network.get_genesis() {
Expand Down
18 changes: 9 additions & 9 deletions crates/guest-program/bin/openvm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/guest-program/bin/openvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
version = "9.0.0"
version = "10.0.0"
name = "ethrex-guest-openvm"
edition = "2024"
license = "MIT OR Apache-2.0"
Expand Down
Loading
Loading