mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-20 16:21:02 +00:00
2d4aa3a42e
* rename Trait -> Config * revert diener changes * rename HostConfig to ActiveConfig as more meaningful * fix merge * "Update Substrate" * cargo update -p sp-io Co-authored-by: parity-processbot <>
208 lines
7.3 KiB
Rust
208 lines
7.3 KiB
Rust
// Copyright 2019-2020 Parity Technologies (UK) Ltd.
|
|
// This file is part of Polkadot.
|
|
|
|
// Polkadot is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Polkadot is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Common runtime code for Polkadot and Kusama.
|
|
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
pub mod claims;
|
|
pub mod slot_range;
|
|
pub mod slots;
|
|
pub mod crowdfund;
|
|
pub mod purchase;
|
|
pub mod impls;
|
|
pub mod paras_sudo_wrapper;
|
|
pub mod paras_registrar;
|
|
|
|
use primitives::v1::{BlockNumber, ValidatorId};
|
|
use sp_runtime::{Perquintill, Perbill, FixedPointNumber, traits::Saturating};
|
|
use frame_support::{
|
|
parameter_types, traits::{Currency},
|
|
weights::{Weight, constants::WEIGHT_PER_SECOND},
|
|
};
|
|
use pallet_transaction_payment::{TargetedFeeAdjustment, Multiplier};
|
|
use static_assertions::const_assert;
|
|
pub use frame_support::weights::constants::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight};
|
|
|
|
#[cfg(feature = "std")]
|
|
pub use pallet_staking::StakerStatus;
|
|
#[cfg(any(feature = "std", test))]
|
|
pub use sp_runtime::BuildStorage;
|
|
pub use pallet_timestamp::Call as TimestampCall;
|
|
pub use pallet_balances::Call as BalancesCall;
|
|
|
|
/// Implementations of some helper traits passed into runtime modules as associated types.
|
|
pub use impls::ToAuthor;
|
|
|
|
pub type NegativeImbalance<T> = <pallet_balances::Module<T> as Currency<<T as frame_system::Config>::AccountId>>::NegativeImbalance;
|
|
|
|
/// The sequence of bytes a valid wasm module binary always starts with. Apart from that it's also a
|
|
/// valid wasm module.
|
|
const WASM_MAGIC: &[u8] = &[0x00, 0x61, 0x73, 0x6d, 0x01, 0x00, 0x00, 0x00];
|
|
|
|
/// We assume that an on-initialize consumes 2.5% of the weight on average, hence a single extrinsic
|
|
/// will not be allowed to consume more than `AvailableBlockRatio - 2.5%`.
|
|
pub const AVERAGE_ON_INITIALIZE_WEIGHT: Perbill = Perbill::from_perthousand(25);
|
|
|
|
// Common constants used in all runtimes.
|
|
parameter_types! {
|
|
pub const BlockHashCount: BlockNumber = 2400;
|
|
/// Block time that can be used by weights.
|
|
pub const MaximumBlockWeight: Weight = 2 * WEIGHT_PER_SECOND;
|
|
/// Portion of the block available to normal class of dispatches.
|
|
pub const AvailableBlockRatio: Perbill = Perbill::from_percent(75);
|
|
/// Maximum weight that a _single_ extrinsic can take.
|
|
pub MaximumExtrinsicWeight: Weight =
|
|
AvailableBlockRatio::get().saturating_sub(AVERAGE_ON_INITIALIZE_WEIGHT)
|
|
* MaximumBlockWeight::get();
|
|
/// Maximum length of block. 5MB.
|
|
pub const MaximumBlockLength: u32 = 5 * 1024 * 1024;
|
|
/// The portion of the `AvailableBlockRatio` that we adjust the fees with. Blocks filled less
|
|
/// than this will decrease the weight and more will increase.
|
|
pub const TargetBlockFullness: Perquintill = Perquintill::from_percent(25);
|
|
/// The adjustment variable of the runtime. Higher values will cause `TargetBlockFullness` to
|
|
/// change the fees more rapidly.
|
|
pub AdjustmentVariable: Multiplier = Multiplier::saturating_from_rational(3, 100_000);
|
|
/// Minimum amount of the multiplier. This value cannot be too low. A test case should ensure
|
|
/// that combined with `AdjustmentVariable`, we can recover from the minimum.
|
|
/// See `multiplier_can_grow_from_zero`.
|
|
pub MinimumMultiplier: Multiplier = Multiplier::saturating_from_rational(1, 1_000_000_000u128);
|
|
}
|
|
|
|
const_assert!(AvailableBlockRatio::get().deconstruct() >= AVERAGE_ON_INITIALIZE_WEIGHT.deconstruct());
|
|
|
|
/// Parameterized slow adjusting fee updated based on
|
|
/// https://w3f-research.readthedocs.io/en/latest/polkadot/Token%20Economics.html#-2.-slow-adjusting-mechanism
|
|
pub type SlowAdjustingFeeUpdate<R> = TargetedFeeAdjustment<
|
|
R,
|
|
TargetBlockFullness,
|
|
AdjustmentVariable,
|
|
MinimumMultiplier
|
|
>;
|
|
|
|
/// The type used for currency conversion.
|
|
///
|
|
/// This must only be used as long as the balance type is u128.
|
|
pub type CurrencyToVote = frame_support::traits::U128CurrencyToVote;
|
|
static_assertions::assert_eq_size!(primitives::v1::Balance, u128);
|
|
|
|
/// A placeholder since there is currently no provided session key handler for parachain validator
|
|
/// keys.
|
|
pub struct ParachainSessionKeyPlaceholder<T>(sp_std::marker::PhantomData<T>);
|
|
impl<T> sp_runtime::BoundToRuntimeAppPublic for ParachainSessionKeyPlaceholder<T> {
|
|
type Public = ValidatorId;
|
|
}
|
|
|
|
impl<T: pallet_session::Config>
|
|
pallet_session::OneSessionHandler<T::AccountId> for ParachainSessionKeyPlaceholder<T>
|
|
{
|
|
type Key = ValidatorId;
|
|
|
|
fn on_genesis_session<'a, I: 'a>(_validators: I) where
|
|
I: Iterator<Item = (&'a T::AccountId, ValidatorId)>,
|
|
T::AccountId: 'a
|
|
{
|
|
|
|
}
|
|
|
|
fn on_new_session<'a, I: 'a>(_changed: bool, _v: I, _q: I) where
|
|
I: Iterator<Item = (&'a T::AccountId, ValidatorId)>,
|
|
T::AccountId: 'a
|
|
{
|
|
|
|
}
|
|
|
|
fn on_disabled(_: usize) { }
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod multiplier_tests {
|
|
use super::*;
|
|
use frame_support::{impl_outer_origin, parameter_types, weights::Weight};
|
|
use sp_core::H256;
|
|
use sp_runtime::{
|
|
testing::Header,
|
|
traits::{BlakeTwo256, IdentityLookup, Convert},
|
|
Perbill,
|
|
};
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug)]
|
|
pub struct Runtime;
|
|
|
|
impl_outer_origin!{
|
|
pub enum Origin for Runtime {}
|
|
}
|
|
|
|
parameter_types! {
|
|
pub const BlockHashCount: u64 = 250;
|
|
pub const ExtrinsicBaseWeight: u64 = 100;
|
|
pub const MaximumBlockWeight: Weight = 1024;
|
|
pub const MaximumBlockLength: u32 = 2 * 1024;
|
|
pub const AvailableBlockRatio: Perbill = Perbill::one();
|
|
}
|
|
|
|
impl frame_system::Config for Runtime {
|
|
type BaseCallFilter = ();
|
|
type Origin = Origin;
|
|
type Index = u64;
|
|
type BlockNumber = u64;
|
|
type Call = ();
|
|
type Hash = H256;
|
|
type Hashing = BlakeTwo256;
|
|
type AccountId = u64;
|
|
type Lookup = IdentityLookup<Self::AccountId>;
|
|
type Header = Header;
|
|
type Event = ();
|
|
type BlockHashCount = BlockHashCount;
|
|
type MaximumBlockWeight = MaximumBlockWeight;
|
|
type DbWeight = ();
|
|
type BlockExecutionWeight = ();
|
|
type ExtrinsicBaseWeight = ExtrinsicBaseWeight;
|
|
type MaximumExtrinsicWeight = MaximumBlockWeight;
|
|
type MaximumBlockLength = MaximumBlockLength;
|
|
type AvailableBlockRatio = AvailableBlockRatio;
|
|
type Version = ();
|
|
type PalletInfo = ();
|
|
type AccountData = ();
|
|
type OnNewAccount = ();
|
|
type OnKilledAccount = ();
|
|
type SystemWeightInfo = ();
|
|
}
|
|
|
|
type System = frame_system::Module<Runtime>;
|
|
|
|
fn run_with_system_weight<F>(w: Weight, assertions: F) where F: Fn() -> () {
|
|
let mut t: sp_io::TestExternalities =
|
|
frame_system::GenesisConfig::default().build_storage::<Runtime>().unwrap().into();
|
|
t.execute_with(|| {
|
|
System::set_block_limits(w, 0);
|
|
assertions()
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn multiplier_can_grow_from_zero() {
|
|
let minimum_multiplier = MinimumMultiplier::get();
|
|
let target = TargetBlockFullness::get() * (AvailableBlockRatio::get() * MaximumBlockWeight::get());
|
|
// if the min is too small, then this will not change, and we are doomed forever.
|
|
// the weight is 1/10th bigger than target.
|
|
run_with_system_weight(target * 101 / 100, || {
|
|
let next = SlowAdjustingFeeUpdate::<Runtime>::convert(minimum_multiplier);
|
|
assert!(next > minimum_multiplier, "{:?} !>= {:?}", next, minimum_multiplier);
|
|
})
|
|
}
|
|
}
|