Skip to content

Commit 2fdf9fd

Browse files
author
dio-will
committed
Bump to version 207
1 parent f5d5215 commit 2fdf9fd

File tree

5 files changed

+5
-22
lines changed

5 files changed

+5
-22
lines changed

runtime/heiko/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
180180
spec_name: create_runtime_str!("heiko"),
181181
impl_name: create_runtime_str!("heiko"),
182182
authoring_version: 1,
183-
spec_version: 206,
183+
spec_version: 207,
184184
impl_version: 33,
185185
apis: RUNTIME_API_VERSIONS,
186186
transaction_version: 17,

runtime/kerria/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
180180
spec_name: create_runtime_str!("kerria"),
181181
impl_name: create_runtime_str!("kerria"),
182182
authoring_version: 1,
183-
spec_version: 206,
183+
spec_version: 207,
184184
impl_version: 33,
185185
apis: RUNTIME_API_VERSIONS,
186186
transaction_version: 17,

runtime/parallel/src/lib.rs

+1-18
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
185185
spec_name: create_runtime_str!("parallel"),
186186
impl_name: create_runtime_str!("parallel"),
187187
authoring_version: 1,
188-
spec_version: 206,
188+
spec_version: 207,
189189
impl_version: 33,
190190
apis: RUNTIME_API_VERSIONS,
191191
transaction_version: 17,
@@ -2134,23 +2134,6 @@ impl fp_self_contained::SelfContainedCall for RuntimeCall {
21342134
}
21352135
}
21362136

2137-
pub struct CrowdloansMigrationV3;
2138-
impl OnRuntimeUpgrade for CrowdloansMigrationV3 {
2139-
fn on_runtime_upgrade() -> frame_support::weights::Weight {
2140-
pallet_crowdloans::migrations::v3::migrate::<Runtime>()
2141-
}
2142-
2143-
#[cfg(feature = "try-runtime")]
2144-
fn pre_upgrade() -> Result<Vec<u8>, &'static str> {
2145-
pallet_crowdloans::migrations::v3::pre_migrate::<Runtime>()
2146-
}
2147-
2148-
#[cfg(feature = "try-runtime")]
2149-
fn post_upgrade(_: Vec<u8>) -> Result<(), &'static str> {
2150-
pallet_crowdloans::migrations::v3::post_migrate::<Runtime>()
2151-
}
2152-
}
2153-
21542137
impl_runtime_apis! {
21552138
impl sp_consensus_aura::AuraApi<Block, AuraId> for Runtime {
21562139
fn slot_duration() -> sp_consensus_aura::SlotDuration {

runtime/vanilla/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
180180
spec_name: create_runtime_str!("vanilla"),
181181
impl_name: create_runtime_str!("vanilla"),
182182
authoring_version: 1,
183-
spec_version: 206,
183+
spec_version: 207,
184184
impl_version: 33,
185185
apis: RUNTIME_API_VERSIONS,
186186
transaction_version: 17,

scripts/collator.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ VOLUME="chains"
2020
NODE_KEY="$1"
2121
KEYSTORE_PATH="$2"
2222
NODE_NAME="$3"
23-
DOCKER_IMAGE="parallelfinance/parallel:v2.0.6"
23+
DOCKER_IMAGE="parallelfinance/parallel:v2.0.7"
2424
BASE_PATH="/data"
2525

2626
if [ $# -lt 3 ]; then

0 commit comments

Comments
 (0)