Skip to content

Commit

Permalink
Fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hbulgarini committed Sep 9, 2024
1 parent 86d7c8a commit 9497b78
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion relay/paseo/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ impl_runtime_weights!(paseo_runtime_constants);
#[cfg(feature = "std")]
include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs"));

// Portico version identifier;
// Paseo version identifier;
/// Runtime version (Paseo).
#[sp_version::runtime_version]
pub const VERSION: RuntimeVersion = RuntimeVersion {
Expand Down
2 changes: 1 addition & 1 deletion scripts/replacements_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"spec_name: create_runtime_str!(\"polkadot\"),": "spec_name: create_runtime_str!(\"paseo\"),",
"impl_name: create_runtime_str!(\"parity-polkadot\"),": "impl_name: create_runtime_str!(\"paseo-testnet\"),",
"type LeaseOffset = LeaseOffset;": "type LeaseOffset = ();",
"// Polkadot version identifier;": "// Portico version identifier;",
"// Polkadot version identifier;": "// Paseo version identifier;",
"/// Runtime version (Polkadot).": "/// Runtime version (Paseo).",
"//! XCM configuration for Polkadot.": "//! XCM configuration for Paseo.",
"pub const EPOCH_DURATION_IN_SLOTS: BlockNumber = prod_or_fast!(4 * HOURS, 1 * MINUTES);":"pub const EPOCH_DURATION_IN_SLOTS: BlockNumber = prod_or_fast!(1 * HOURS, 1 * MINUTES);",
Expand Down
2 changes: 1 addition & 1 deletion scripts/test_replacements.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def test_replacements(config_file):
),
(
"// Polkadot version identifier;",
"// Portico version identifier;"
"// Paseo version identifier;"
),
(
"/// Runtime version (Polkadot).",
Expand Down

0 comments on commit 9497b78

Please sign in to comment.