diff --git a/bridges/bin/millau/runtime/src/lib.rs b/bridges/bin/millau/runtime/src/lib.rs index d97a82d625..7385e8ecec 100644 --- a/bridges/bin/millau/runtime/src/lib.rs +++ b/bridges/bin/millau/runtime/src/lib.rs @@ -283,7 +283,7 @@ impl pallet_balances::Config for Runtime { parameter_types! { pub const TransactionBaseFee: Balance = 0; pub const TransactionByteFee: Balance = 1; - // values for following parameters are copypasted from polkadot repo, but it is fine + // values for following parameters are copied from polkadot repo, but it is fine // not to sync them - we're not going to make Rialto a full copy of one of Polkadot-like chains pub const TargetBlockFullness: Perquintill = Perquintill::from_percent(25); pub AdjustmentVariable: Multiplier = Multiplier::saturating_from_rational(3, 100_000); diff --git a/bridges/bin/rialto-parachain/runtime/src/lib.rs b/bridges/bin/rialto-parachain/runtime/src/lib.rs index 93118e3c9d..15911d6fc4 100644 --- a/bridges/bin/rialto-parachain/runtime/src/lib.rs +++ b/bridges/bin/rialto-parachain/runtime/src/lib.rs @@ -16,7 +16,7 @@ //! The Rialto parachain runtime. This can be compiled with `#[no_std]`, ready for Wasm. //! -//! Originally a copypaste of runtime from https://github.com/substrate-developer-hub/substrate-parachain-template. +//! Originally a copy of runtime from https://github.com/substrate-developer-hub/substrate-parachain-template. #![cfg_attr(not(feature = "std"), no_std)] // `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. diff --git a/bridges/bin/rialto/runtime/src/lib.rs b/bridges/bin/rialto/runtime/src/lib.rs index 51a5a8957c..90a4dbd508 100644 --- a/bridges/bin/rialto/runtime/src/lib.rs +++ b/bridges/bin/rialto/runtime/src/lib.rs @@ -423,7 +423,7 @@ impl pallet_balances::Config for Runtime { parameter_types! { pub const TransactionBaseFee: Balance = 0; pub const TransactionByteFee: Balance = 1; - // values for following parameters are copypasted from polkadot repo, but it is fine + // values for following parameters are copied from polkadot repo, but it is fine // not to sync them - we're not going to make Rialto a full copy of one of Polkadot-like chains pub const TargetBlockFullness: Perquintill = Perquintill::from_percent(25); pub AdjustmentVariable: Multiplier = Multiplier::saturating_from_rational(3, 100_000); diff --git a/bridges/primitives/runtime/src/lib.rs b/bridges/primitives/runtime/src/lib.rs index fe3309c83b..63fc2393e7 100644 --- a/bridges/primitives/runtime/src/lib.rs +++ b/bridges/primitives/runtime/src/lib.rs @@ -192,7 +192,7 @@ impl, BlockHash: Copy> TransactionEra StorageKey { let mut buffer = Vec::with_capacity(1 + parameter_name.len() + 1 + 1); buffer.push(b':');