mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +00:00
aac9d77ee2
* Reduce staking miner reward * Add EOF * Fix stuff * remove import * Add tyoe * remove redundant stuff * update Substrate Co-authored-by: kianenigma <kian@parity.io> Co-authored-by: parity-processbot <>
58 lines
2.2 KiB
Rust
58 lines
2.2 KiB
Rust
// Copyright 2021 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/>.
|
|
|
|
//! Code for elections.
|
|
|
|
use frame_support::{
|
|
parameter_types,
|
|
weights::{DispatchClass, Weight},
|
|
};
|
|
use sp_runtime::Perbill;
|
|
use super::{BlockExecutionWeight, BlockLength, BlockWeights};
|
|
|
|
parameter_types! {
|
|
/// A limit for off-chain phragmen unsigned solution submission.
|
|
///
|
|
/// We want to keep it as high as possible, but can't risk having it reject,
|
|
/// so we always subtract the base block execution weight.
|
|
pub OffchainSolutionWeightLimit: Weight = BlockWeights::get()
|
|
.get(DispatchClass::Normal)
|
|
.max_extrinsic
|
|
.expect("Normal extrinsics have weight limit configured by default; qed")
|
|
.saturating_sub(BlockExecutionWeight::get());
|
|
|
|
/// A limit for off-chain phragmen unsigned solution length.
|
|
///
|
|
/// We allow up to 90% of the block's size to be consumed by the solution.
|
|
pub OffchainSolutionLengthLimit: u32 = Perbill::from_rational(90_u32, 100) *
|
|
*BlockLength::get()
|
|
.max
|
|
.get(DispatchClass::Normal);
|
|
}
|
|
|
|
/// The numbers configured here should always be more than the the maximum limits of staking pallet
|
|
/// to ensure election snapshot will not run out of memory.
|
|
pub struct BenchmarkConfig;
|
|
impl pallet_election_provider_multi_phase::BenchmarkingConfig for BenchmarkConfig {
|
|
const VOTERS: [u32; 2] = [5_000, 10_000];
|
|
const TARGETS: [u32; 2] = [1_000, 2_000];
|
|
const ACTIVE_VOTERS: [u32; 2] = [1000, 4_000];
|
|
const DESIRED_TARGETS: [u32; 2] = [400, 800];
|
|
const SNAPSHOT_MAXIMUM_VOTERS: u32 = 25_000;
|
|
const MINER_MAXIMUM_VOTERS: u32 = 15_000;
|
|
const MAXIMUM_TARGETS: u32 = 2000;
|
|
}
|