diff --git a/Cargo.lock b/Cargo.lock index 64f6865265..60f8e0e0ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -400,7 +400,7 @@ dependencies = [ [[package]] name = "aleph-runtime" -version = "0.9.1" +version = "0.10.0" dependencies = [ "baby-liminal-extension", "frame-benchmarking", diff --git a/aleph-client/Cargo.lock b/aleph-client/Cargo.lock index 8a5b48b9be..3acbdc0d0d 100644 --- a/aleph-client/Cargo.lock +++ b/aleph-client/Cargo.lock @@ -70,7 +70,7 @@ dependencies = [ [[package]] name = "aleph_client" -version = "3.6.0" +version = "3.7.0" dependencies = [ "anyhow", "async-trait", diff --git a/bin/runtime/Cargo.toml b/bin/runtime/Cargo.toml index c5dc95eb01..85fb8731be 100644 --- a/bin/runtime/Cargo.toml +++ b/bin/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aleph-runtime" -version = "0.9.1" +version = "0.10.0" license = "GPL-3.0-or-later" authors.workspace = true edition.workspace = true diff --git a/bin/runtime/src/lib.rs b/bin/runtime/src/lib.rs index 9dd796df77..ee36fd2701 100644 --- a/bin/runtime/src/lib.rs +++ b/bin/runtime/src/lib.rs @@ -751,10 +751,11 @@ impl pallet_identity::Config for Runtime { // Create the runtime by composing the FRAME pallets that were previously configured. #[cfg(not(feature = "liminal"))] construct_runtime!( - pub enum Runtime where + pub struct Runtime + where Block = Block, NodeBlock = opaque::Block, - UncheckedExtrinsic = UncheckedExtrinsic + UncheckedExtrinsic = UncheckedExtrinsic, { System: frame_system, RandomnessCollectiveFlip: pallet_insecure_randomness_collective_flip, @@ -783,10 +784,11 @@ construct_runtime!( #[cfg(feature = "liminal")] construct_runtime!( - pub enum Runtime where + pub struct Runtime + where Block = Block, NodeBlock = opaque::Block, - UncheckedExtrinsic = UncheckedExtrinsic + UncheckedExtrinsic = UncheckedExtrinsic, { System: frame_system, RandomnessCollectiveFlip: pallet_insecure_randomness_collective_flip,