diff --git a/runtime/.cargo/audit.toml b/runtime/.cargo/audit.toml index a81972c2..8c287607 100644 --- a/runtime/.cargo/audit.toml +++ b/runtime/.cargo/audit.toml @@ -1,5 +1,4 @@ [advisories] ignore = [ - "RUSTSEC-2020-0071", # Old version of `time` crate is used by a lot of deps. - "RUSTSEC-2022-0093", # Remove once we can update to ed25519-dalek to v2. + "RUSTSEC-2023-0071", # Does not affect our current use of the library. ] diff --git a/runtime/Cargo.lock b/runtime/Cargo.lock index 4d2b36ad..1466e3d5 100644 --- a/runtime/Cargo.lock +++ b/runtime/Cargo.lock @@ -1612,8 +1612,8 @@ dependencies = [ [[package]] name = "keymanager" -version = "0.4.1-testnet" -source = "git+https://github.com/oasisprotocol/keymanager-paratime?tag=v0.4.1-testnet#1b20792680b245a610ee428876ca0f6ddc99a436" +version = "0.4.1" +source = "git+https://github.com/oasisprotocol/keymanager-paratime?tag=v0.4.1#8d87e456cdb3156ecea932110de1aac2a675f4af" dependencies = [ "oasis-core-keymanager", "oasis-core-runtime", @@ -2829,7 +2829,7 @@ dependencies = [ [[package]] name = "sapphire-paratime" -version = "0.7.0-testnet" +version = "0.7.0" dependencies = [ "keymanager", "oasis-runtime-sdk", diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 152e84be..4afa2464 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sapphire-paratime" -version = "0.7.0-testnet" +version = "0.7.0" authors = ["Oasis Protocol Foundation "] edition = "2021" license = "Apache-2.0" @@ -18,7 +18,7 @@ threads = 8 debug = false [dependencies] -keymanager = { git = "https://github.com/oasisprotocol/keymanager-paratime", tag = "v0.4.1-testnet" } +keymanager = { git = "https://github.com/oasisprotocol/keymanager-paratime", tag = "v0.4.1" } # SDK. module-evm = { git = "https://github.com/oasisprotocol/oasis-sdk", tag = "runtime-sdk/v0.8.1", package = "oasis-runtime-sdk-evm" } diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 33950f5c..a8e875c2 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -47,7 +47,7 @@ const fn state_version() -> u32 { 4 } else { // Mainnet. - 1 + 2 } } @@ -143,11 +143,11 @@ impl sdk::Runtime for Runtime { } else { // Mainnet. Some(TrustRoot { - height: 15986195, - hash: "14b178d8c77e1dfe84cdb13d09369effc7d814a9db0e7b87a84ce9f62d3d30f1".into(), + height: 16887695, + hash: "a3382aaaf7ff53c364ecddaf9577a819d415521d0b0a6362c9c3ea6a13a2356c".into(), runtime_id: "000000000000000000000000000000000000000000000000f80306c9858e7279" .into(), - chain_context: "b11b369e0da5bb230b220127f5e7b242d385ef8c6f54906243f30af63c815535" + chain_context: "bb3d748def55bdfb797a2ac53ee6ee141e54cd2ab2dc2375f4a0703a178e6e55" .to_string(), }) }