Skip to content

Commit

Permalink
Merge pull request #968 from gregdhill/chore/parachain-v1.23.0
Browse files Browse the repository at this point in the history
chore: bump spec versions to 1023000
  • Loading branch information
gregdhill authored Mar 14, 2023
2 parents 688bb30 + 3a75dff commit 6b153a5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 12 deletions.
2 changes: 1 addition & 1 deletion parachain/runtime/interlay/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("interlay-parachain"),
impl_name: create_runtime_str!("interlay-parachain"),
authoring_version: 1,
spec_version: 1022000,
spec_version: 1023000,
impl_version: 1,
transaction_version: 2, // added preimage
apis: RUNTIME_API_VERSIONS,
Expand Down
2 changes: 1 addition & 1 deletion parachain/runtime/kintsugi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("kintsugi-parachain"),
impl_name: create_runtime_str!("kintsugi-parachain"),
authoring_version: 1,
spec_version: 1022000,
spec_version: 1023000,
impl_version: 1,
transaction_version: 3, // added preimage
apis: RUNTIME_API_VERSIONS,
Expand Down
2 changes: 1 addition & 1 deletion parachain/runtime/testnet-interlay/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("testnet-interlay"),
impl_name: create_runtime_str!("testnet-interlay"),
authoring_version: 1,
spec_version: 1022000,
spec_version: 1023000,
impl_version: 1,
transaction_version: 1, // added preimage
apis: RUNTIME_API_VERSIONS,
Expand Down
12 changes: 3 additions & 9 deletions parachain/runtime/testnet-kintsugi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("testnet-kintsugi"),
impl_name: create_runtime_str!("testnet-kintsugi"),
authoring_version: 1,
spec_version: 1022000,
spec_version: 1023000,
impl_version: 1,
transaction_version: 1, // added preimage
apis: RUNTIME_API_VERSIONS,
Expand Down Expand Up @@ -1271,14 +1271,8 @@ pub type UncheckedExtrinsic = generic::UncheckedExtrinsic<Address, RuntimeCall,
/// Extrinsic type that has already been checked.
pub type CheckedExtrinsic = generic::CheckedExtrinsic<AccountId, RuntimeCall, SignedExtra>;
/// Executive: handles dispatch to the various modules.
pub type Executive = frame_executive::Executive<
Runtime,
Block,
frame_system::ChainContext<Runtime>,
Runtime,
AllPalletsWithSystem,
(democracy::migrations::v1::Migration<Runtime>,),
>;
pub type Executive =
frame_executive::Executive<Runtime, Block, frame_system::ChainContext<Runtime>, Runtime, AllPalletsWithSystem>;

#[cfg(not(feature = "disable-runtime-api"))]
impl_runtime_apis! {
Expand Down

0 comments on commit 6b153a5

Please sign in to comment.