Upgrade generic-template to polkadot-stable2412 (#401)

This commit is contained in:
Amar Singh
2025-03-02 13:02:30 -05:00
committed by GitHub
parent d953d959e6
commit 18f4807668
19 changed files with 3103 additions and 2063 deletions
@@ -25,7 +25,7 @@ mod runtime_tests {
constants::{currency::*, *},
BlockNumber, Runtime,
};
use sp_runtime::{create_runtime_str, Perbill};
use sp_runtime::Perbill;
use sp_version::RuntimeVersion;
use xcm::latest::prelude::BodyId;
@@ -34,14 +34,14 @@ mod runtime_tests {
assert_eq!(
VERSION,
RuntimeVersion {
spec_name: create_runtime_str!("template-parachain"),
impl_name: create_runtime_str!("template-parachain"),
spec_name: std::borrow::Cow::Borrowed("template-parachain"),
impl_name: std::borrow::Cow::Borrowed("template-parachain"),
authoring_version: 1,
spec_version: 1,
impl_version: 0,
apis: generic_runtime_template::apis::RUNTIME_API_VERSIONS,
transaction_version: 1,
state_version: 1,
system_version: 1,
}
);
}