From 2fdf9fd40ced5b1aa6b5a882b3af898d697ab0ff Mon Sep 17 00:00:00 2001 From: dio-will Date: Mon, 10 Jun 2024 19:41:20 +0800 Subject: [PATCH] Bump to version 207 --- runtime/heiko/src/lib.rs | 2 +- runtime/kerria/src/lib.rs | 2 +- runtime/parallel/src/lib.rs | 19 +------------------ runtime/vanilla/src/lib.rs | 2 +- scripts/collator.sh | 2 +- 5 files changed, 5 insertions(+), 22 deletions(-) diff --git a/runtime/heiko/src/lib.rs b/runtime/heiko/src/lib.rs index 645bc636d..6f7ca8592 100644 --- a/runtime/heiko/src/lib.rs +++ b/runtime/heiko/src/lib.rs @@ -180,7 +180,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("heiko"), impl_name: create_runtime_str!("heiko"), authoring_version: 1, - spec_version: 206, + spec_version: 207, impl_version: 33, apis: RUNTIME_API_VERSIONS, transaction_version: 17, diff --git a/runtime/kerria/src/lib.rs b/runtime/kerria/src/lib.rs index 0df60c323..528f1ced6 100644 --- a/runtime/kerria/src/lib.rs +++ b/runtime/kerria/src/lib.rs @@ -180,7 +180,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("kerria"), impl_name: create_runtime_str!("kerria"), authoring_version: 1, - spec_version: 206, + spec_version: 207, impl_version: 33, apis: RUNTIME_API_VERSIONS, transaction_version: 17, diff --git a/runtime/parallel/src/lib.rs b/runtime/parallel/src/lib.rs index 9f7333f49..238e5f96a 100644 --- a/runtime/parallel/src/lib.rs +++ b/runtime/parallel/src/lib.rs @@ -185,7 +185,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("parallel"), impl_name: create_runtime_str!("parallel"), authoring_version: 1, - spec_version: 206, + spec_version: 207, impl_version: 33, apis: RUNTIME_API_VERSIONS, transaction_version: 17, @@ -2134,23 +2134,6 @@ impl fp_self_contained::SelfContainedCall for RuntimeCall { } } -pub struct CrowdloansMigrationV3; -impl OnRuntimeUpgrade for CrowdloansMigrationV3 { - fn on_runtime_upgrade() -> frame_support::weights::Weight { - pallet_crowdloans::migrations::v3::migrate::() - } - - #[cfg(feature = "try-runtime")] - fn pre_upgrade() -> Result, &'static str> { - pallet_crowdloans::migrations::v3::pre_migrate::() - } - - #[cfg(feature = "try-runtime")] - fn post_upgrade(_: Vec) -> Result<(), &'static str> { - pallet_crowdloans::migrations::v3::post_migrate::() - } -} - impl_runtime_apis! { impl sp_consensus_aura::AuraApi for Runtime { fn slot_duration() -> sp_consensus_aura::SlotDuration { diff --git a/runtime/vanilla/src/lib.rs b/runtime/vanilla/src/lib.rs index da78c4c01..fd4836115 100644 --- a/runtime/vanilla/src/lib.rs +++ b/runtime/vanilla/src/lib.rs @@ -180,7 +180,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("vanilla"), impl_name: create_runtime_str!("vanilla"), authoring_version: 1, - spec_version: 206, + spec_version: 207, impl_version: 33, apis: RUNTIME_API_VERSIONS, transaction_version: 17, diff --git a/scripts/collator.sh b/scripts/collator.sh index 2c07503c1..5390e2b2d 100755 --- a/scripts/collator.sh +++ b/scripts/collator.sh @@ -20,7 +20,7 @@ VOLUME="chains" NODE_KEY="$1" KEYSTORE_PATH="$2" NODE_NAME="$3" -DOCKER_IMAGE="parallelfinance/parallel:v2.0.6" +DOCKER_IMAGE="parallelfinance/parallel:v2.0.7" BASE_PATH="/data" if [ $# -lt 3 ]; then