diff --git a/runtime/common/config/pallets/mod.rs b/runtime/common/config/pallets/mod.rs index 61ab8f1271..aa8ad4ad1d 100644 --- a/runtime/common/config/pallets/mod.rs +++ b/runtime/common/config/pallets/mod.rs @@ -112,7 +112,7 @@ impl BlockNumberProvider for OnInitializeBlockNumberProvider { fn current_block_number() -> Self::BlockNumber { // This code was broken previously, but after fixing, we decided it would be better to leave it broken for now. - 0.into() + 0u32.into() // use hex_literal::hex; // use parity_scale_codec::Decode; // use sp_io::storage; diff --git a/runtime/opal/src/lib.rs b/runtime/opal/src/lib.rs index 08de6516f7..8219e4509f 100644 --- a/runtime/opal/src/lib.rs +++ b/runtime/opal/src/lib.rs @@ -49,7 +49,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("opal"), impl_name: create_runtime_str!("opal"), authoring_version: 1, - spec_version: 10010062, + spec_version: 10010063, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 3, diff --git a/runtime/quartz/src/lib.rs b/runtime/quartz/src/lib.rs index a27cecfaec..f1f11ad0e6 100644 --- a/runtime/quartz/src/lib.rs +++ b/runtime/quartz/src/lib.rs @@ -51,7 +51,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { impl_name: create_runtime_str!("quartz"), authoring_version: 1, - spec_version: 10010062, + spec_version: 10010063, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 3, @@ -64,7 +64,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { impl_name: create_runtime_str!("sapphire"), authoring_version: 1, - spec_version: 10010062, + spec_version: 10010063, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 3, diff --git a/runtime/unique/src/lib.rs b/runtime/unique/src/lib.rs index e34bbda0f4..82849032a4 100644 --- a/runtime/unique/src/lib.rs +++ b/runtime/unique/src/lib.rs @@ -49,7 +49,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("unique"), impl_name: create_runtime_str!("unique"), authoring_version: 1, - spec_version: 10010062, + spec_version: 10010063, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 3,