mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 16:27:58 +00:00
Set new staking limits (#3299)
* Set staking limits * Set westend limits as well * Update runtime/kusama/src/lib.rs Co-authored-by: Gavin Wood <gavin@parity.io> Co-authored-by: Gavin Wood <gavin@parity.io>
This commit is contained in:
@@ -1513,10 +1513,31 @@ pub type Executive = frame_executive::Executive<
|
||||
frame_system::ChainContext<Runtime>,
|
||||
Runtime,
|
||||
AllPallets,
|
||||
SetStakingLimits,
|
||||
>;
|
||||
/// The payload being signed in the transactions.
|
||||
pub type SignedPayload = generic::SignedPayload<Call, SignedExtra>;
|
||||
|
||||
pub struct SetStakingLimits;
|
||||
impl frame_support::traits::OnRuntimeUpgrade for SetStakingLimits {
|
||||
fn on_runtime_upgrade() -> Weight {
|
||||
// This will be the threshold needed henceforth to become a nominator. All nominators will
|
||||
// less than this amount bonded are at the risk of being chilled by another reporter.
|
||||
let min_nominator_bond = UNITS / 10;
|
||||
// The absolute maximum number of nominators. This number is set rather conservatively, and
|
||||
// is expected to increase soon after this runtime upgrade via another governance proposal.
|
||||
// The current Polkadot state has more than 30_000 nominators, therefore no other nominator
|
||||
// can join.
|
||||
let max_nominators = 20_000;
|
||||
<pallet_staking::MinNominatorBond<Runtime>>::put(min_nominator_bond);
|
||||
<pallet_staking::MaxNominatorsCount<Runtime>>::put(max_nominators);
|
||||
|
||||
// we set no limits on validators for now.
|
||||
|
||||
<Runtime as frame_system::Config>::DbWeight::get().writes(2)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(feature = "disable-runtime-api"))]
|
||||
sp_api::impl_runtime_apis! {
|
||||
impl sp_api::Core<Block> for Runtime {
|
||||
|
||||
@@ -1099,11 +1099,31 @@ pub type Executive = frame_executive::Executive<
|
||||
frame_system::ChainContext<Runtime>,
|
||||
Runtime,
|
||||
AllPallets,
|
||||
GrandpaStoragePrefixMigration,
|
||||
(GrandpaStoragePrefixMigration, SetStakingLimits),
|
||||
>;
|
||||
/// The payload being signed in transactions.
|
||||
pub type SignedPayload = generic::SignedPayload<Call, SignedExtra>;
|
||||
|
||||
pub struct SetStakingLimits;
|
||||
impl frame_support::traits::OnRuntimeUpgrade for SetStakingLimits {
|
||||
fn on_runtime_upgrade() -> Weight {
|
||||
// This will be the threshold needed henceforth to become a nominator. All nominators will
|
||||
// less than this amount bonded are at the risk of being chilled by another reporter.
|
||||
let min_nominator_bond = 20 * UNITS;
|
||||
// The absolute maximum number of nominators. This number is set rather conservatively, and
|
||||
// is expected to increase soon after this runtime upgrade via another governance proposal.
|
||||
// The current Polkadot state has more than 30_000 nominators, therefore no other nominator
|
||||
// can join.
|
||||
let max_nominators = 20_000;
|
||||
<pallet_staking::MinNominatorBond<Runtime>>::put(min_nominator_bond);
|
||||
<pallet_staking::MaxNominatorsCount<Runtime>>::put(max_nominators);
|
||||
|
||||
// we set no limits on validators for now.
|
||||
|
||||
<Runtime as frame_system::Config>::DbWeight::get().writes(2)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(feature = "disable-runtime-api"))]
|
||||
sp_api::impl_runtime_apis! {
|
||||
impl sp_api::Core<Block> for Runtime {
|
||||
|
||||
@@ -1105,10 +1105,23 @@ pub type Executive = frame_executive::Executive<
|
||||
frame_system::ChainContext<Runtime>,
|
||||
Runtime,
|
||||
AllPallets,
|
||||
SetStakingLimits,
|
||||
>;
|
||||
/// The payload being signed in transactions.
|
||||
pub type SignedPayload = generic::SignedPayload<Call, SignedExtra>;
|
||||
|
||||
pub struct SetStakingLimits;
|
||||
impl frame_support::traits::OnRuntimeUpgrade for SetStakingLimits {
|
||||
fn on_runtime_upgrade() -> Weight {
|
||||
<pallet_staking::MinNominatorBond<Runtime>>::put(1 * UNITS);
|
||||
<pallet_staking::MaxNominatorsCount<Runtime>>::put(1000);
|
||||
<pallet_staking::MinValidatorBond<Runtime>>::put(10 * UNITS);
|
||||
<pallet_staking::MaxValidatorsCount<Runtime>>::put(10);
|
||||
|
||||
<Runtime as frame_system::Config>::DbWeight::get().writes(4)
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(feature = "disable-runtime-api"))]
|
||||
sp_api::impl_runtime_apis! {
|
||||
impl sp_api::Core<Block> for Runtime {
|
||||
|
||||
Reference in New Issue
Block a user