Reduce staking miner reward (companion substrate/pull/9395) (#3465)

* 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 <>
This commit is contained in:
Zeke Mostov
2021-07-23 02:58:29 -07:00
committed by GitHub
parent 7788de8164
commit aac9d77ee2
6 changed files with 170 additions and 216 deletions
+155 -155
View File
File diff suppressed because it is too large Load Diff
+1 -25
View File
@@ -20,12 +20,7 @@ use frame_support::{
parameter_types, parameter_types,
weights::{DispatchClass, Weight}, weights::{DispatchClass, Weight},
}; };
use sp_runtime::{ use sp_runtime::Perbill;
traits::{Zero, Dispatchable},
FixedU128, FixedPointNumber, Perbill,
};
use pallet_transaction_payment::OnChargeTransaction;
use frame_support::weights::{DispatchInfo, Pays};
use super::{BlockExecutionWeight, BlockLength, BlockWeights}; use super::{BlockExecutionWeight, BlockLength, BlockWeights};
parameter_types! { parameter_types! {
@@ -48,25 +43,6 @@ parameter_types! {
.get(DispatchClass::Normal); .get(DispatchClass::Normal);
} }
pub fn fee_for_submit_call<T>(
multiplier: FixedU128,
weight: Weight,
length: u32,
) -> primitives::v1::Balance
where
T: pallet_transaction_payment::Config,
<T as pallet_transaction_payment::Config>::OnChargeTransaction:
OnChargeTransaction<T, Balance = primitives::v1::Balance>,
<T as frame_system::Config>::Call: Dispatchable<Info = DispatchInfo>,
{
let info = DispatchInfo { weight, class: DispatchClass::Normal, pays_fee: Pays::Yes };
multiplier.saturating_mul_int(pallet_transaction_payment::Pallet::<T>::compute_fee(
length,
&info,
Zero::zero(),
))
}
/// The numbers configured here should always be more than the the maximum limits of staking pallet /// 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. /// to ensure election snapshot will not run out of memory.
pub struct BenchmarkConfig; pub struct BenchmarkConfig;
+5 -12
View File
@@ -35,7 +35,7 @@ use runtime_common::{
claims, paras_registrar, xcm_sender, slots, auctions, crowdloan, claims, paras_registrar, xcm_sender, slots, auctions, crowdloan,
SlowAdjustingFeeUpdate, CurrencyToVote, impls::DealWithFees, SlowAdjustingFeeUpdate, CurrencyToVote, impls::DealWithFees,
BlockHashCount, RocksDbWeight, BlockWeights, BlockLength, BlockHashCount, RocksDbWeight, BlockWeights, BlockLength,
OffchainSolutionWeightLimit, OffchainSolutionLengthLimit, elections::fee_for_submit_call, OffchainSolutionWeightLimit, OffchainSolutionLengthLimit,
ToAuthor, ToAuthor,
}; };
@@ -66,7 +66,7 @@ use xcm_executor::XcmExecutor;
use sp_arithmetic::Perquintill; use sp_arithmetic::Perquintill;
use sp_runtime::{ use sp_runtime::{
create_runtime_str, generic, impl_opaque_keys, ApplyExtrinsicResult, KeyTypeId, Percent, create_runtime_str, generic, impl_opaque_keys, ApplyExtrinsicResult, KeyTypeId, Percent,
Permill, Perbill, FixedPointNumber, Permill, Perbill,
transaction_validity::{TransactionValidity, TransactionSource, TransactionPriority}, transaction_validity::{TransactionValidity, TransactionSource, TransactionPriority},
traits::{ traits::{
BlakeTwo256, Block as BlockT, OpaqueKeys, ConvertInto, AccountIdLookup, BlakeTwo256, Block as BlockT, OpaqueKeys, ConvertInto, AccountIdLookup,
@@ -347,7 +347,6 @@ impl pallet_session::historical::Config for Runtime {
type FullIdentificationOf = pallet_staking::ExposureOf<Runtime>; type FullIdentificationOf = pallet_staking::ExposureOf<Runtime>;
} }
use pallet_election_provider_multi_phase::WeightInfo;
parameter_types! { parameter_types! {
// phase durations. 1/4 of the last session for each. // phase durations. 1/4 of the last session for each.
pub const SignedPhase: u32 = EPOCH_DURATION_IN_SLOTS / 4; pub const SignedPhase: u32 = EPOCH_DURATION_IN_SLOTS / 4;
@@ -360,15 +359,8 @@ parameter_types! {
// This formula is currently adjusted such that a typical solution will spend an amount equal // This formula is currently adjusted such that a typical solution will spend an amount equal
// to the base deposit for every 50 kb. // to the base deposit for every 50 kb.
pub const SignedDepositByte: Balance = deposit(1, 0) / (50 * 1024); pub const SignedDepositByte: Balance = deposit(1, 0) / (50 * 1024);
pub SignedRewardBase: Balance = fee_for_submit_call::<Runtime>( // Each good submission will get 1/10 KSM as reward
// give 20% threshold. pub SignedRewardBase: Balance = UNITS / 10;
sp_runtime::FixedU128::saturating_from_rational(12, 10),
// maximum weight possible.
weights::pallet_election_provider_multi_phase::WeightInfo::<Runtime>::submit(SignedMaxSubmissions::get()),
// assume a solution of 100kb length.
100 * 1024
);
// fallback: emergency phase. // fallback: emergency phase.
pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy =
pallet_election_provider_multi_phase::FallbackStrategy::Nothing; pallet_election_provider_multi_phase::FallbackStrategy::Nothing;
@@ -391,6 +383,7 @@ sp_npos_elections::generate_solution_type!(
impl pallet_election_provider_multi_phase::Config for Runtime { impl pallet_election_provider_multi_phase::Config for Runtime {
type Event = Event; type Event = Event;
type Currency = Balances; type Currency = Balances;
type EstimateCallFee = TransactionPayment;
type UnsignedPhase = UnsignedPhase; type UnsignedPhase = UnsignedPhase;
type SignedMaxSubmissions = SignedMaxSubmissions; type SignedMaxSubmissions = SignedMaxSubmissions;
type SignedRewardBase = SignedRewardBase; type SignedRewardBase = SignedRewardBase;
+4 -12
View File
@@ -26,7 +26,6 @@ use runtime_common::{
impls::DealWithFees, impls::DealWithFees,
BlockHashCount, RocksDbWeight, BlockWeights, BlockLength, BlockHashCount, RocksDbWeight, BlockWeights, BlockLength,
OffchainSolutionWeightLimit, OffchainSolutionLengthLimit, OffchainSolutionWeightLimit, OffchainSolutionLengthLimit,
elections::fee_for_submit_call,
ParachainSessionKeyPlaceholder, AssignmentSessionKeyPlaceholder, ParachainSessionKeyPlaceholder, AssignmentSessionKeyPlaceholder,
}; };
@@ -41,7 +40,7 @@ use primitives::v1::{
ValidatorIndex, InboundDownwardMessage, InboundHrmpMessage, SessionInfo, ValidatorIndex, InboundDownwardMessage, InboundHrmpMessage, SessionInfo,
}; };
use sp_runtime::{ use sp_runtime::{
create_runtime_str, generic, impl_opaque_keys, ApplyExtrinsicResult, FixedPointNumber, create_runtime_str, generic, impl_opaque_keys, ApplyExtrinsicResult,
KeyTypeId, Percent, Permill, Perbill, curve::PiecewiseLinear, KeyTypeId, Percent, Permill, Perbill, curve::PiecewiseLinear,
transaction_validity::{TransactionValidity, TransactionSource, TransactionPriority}, transaction_validity::{TransactionValidity, TransactionSource, TransactionPriority},
traits::{ traits::{
@@ -327,7 +326,6 @@ impl pallet_session::historical::Config for Runtime {
type FullIdentificationOf = pallet_staking::ExposureOf<Runtime>; type FullIdentificationOf = pallet_staking::ExposureOf<Runtime>;
} }
use pallet_election_provider_multi_phase::WeightInfo;
parameter_types! { parameter_types! {
// phase durations. 1/4 of the last session for each. // phase durations. 1/4 of the last session for each.
pub const SignedPhase: u32 = EPOCH_DURATION_IN_SLOTS / 4; pub const SignedPhase: u32 = EPOCH_DURATION_IN_SLOTS / 4;
@@ -340,15 +338,8 @@ parameter_types! {
// This formula is currently adjusted such that a typical solution will spend an amount equal // This formula is currently adjusted such that a typical solution will spend an amount equal
// to the base deposit for every 50 kb. // to the base deposit for every 50 kb.
pub const SignedDepositByte: Balance = deposit(1, 0) / (50 * 1024); pub const SignedDepositByte: Balance = deposit(1, 0) / (50 * 1024);
pub SignedRewardBase: Balance = fee_for_submit_call::<Runtime>( // Each good submission will get 1 DOT as reward
// give 20% threshold. pub SignedRewardBase: Balance = 1 * UNITS;
sp_runtime::FixedU128::saturating_from_rational(12, 10),
// maximum weight possible.
weights::pallet_election_provider_multi_phase::WeightInfo::<Runtime>::submit(SignedMaxSubmissions::get()),
// assume a solution of 200kb length.
200 * 1024
);
// fallback: emergency phase. // fallback: emergency phase.
pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy =
pallet_election_provider_multi_phase::FallbackStrategy::Nothing; pallet_election_provider_multi_phase::FallbackStrategy::Nothing;
@@ -371,6 +362,7 @@ sp_npos_elections::generate_solution_type!(
impl pallet_election_provider_multi_phase::Config for Runtime { impl pallet_election_provider_multi_phase::Config for Runtime {
type Event = Event; type Event = Event;
type Currency = Balances; type Currency = Balances;
type EstimateCallFee = TransactionPayment;
type SignedPhase = SignedPhase; type SignedPhase = SignedPhase;
type UnsignedPhase = UnsignedPhase; type UnsignedPhase = UnsignedPhase;
type SignedMaxSubmissions = SignedMaxSubmissions; type SignedMaxSubmissions = SignedMaxSubmissions;
+4 -12
View File
@@ -36,7 +36,6 @@ use runtime_common::{
impls::ToAuthor, impls::ToAuthor,
BlockHashCount, BlockWeights, BlockLength, RocksDbWeight, BlockHashCount, BlockWeights, BlockLength, RocksDbWeight,
OffchainSolutionWeightLimit, OffchainSolutionLengthLimit, OffchainSolutionWeightLimit, OffchainSolutionLengthLimit,
elections::fee_for_submit_call,
}; };
use runtime_parachains::origin as parachains_origin; use runtime_parachains::origin as parachains_origin;
@@ -65,7 +64,7 @@ use xcm_builder::{
}; };
use sp_runtime::{ use sp_runtime::{
create_runtime_str, generic, impl_opaque_keys, FixedPointNumber, create_runtime_str, generic, impl_opaque_keys,
ApplyExtrinsicResult, KeyTypeId, Perbill, curve::PiecewiseLinear, ApplyExtrinsicResult, KeyTypeId, Perbill, curve::PiecewiseLinear,
transaction_validity::{TransactionValidity, TransactionSource, TransactionPriority}, transaction_validity::{TransactionValidity, TransactionSource, TransactionPriority},
traits::{ traits::{
@@ -332,7 +331,6 @@ impl pallet_session::historical::Config for Runtime {
type FullIdentificationOf = pallet_staking::ExposureOf<Runtime>; type FullIdentificationOf = pallet_staking::ExposureOf<Runtime>;
} }
use pallet_election_provider_multi_phase::WeightInfo;
parameter_types! { parameter_types! {
// phase durations. 1/4 of the last session for each. // phase durations. 1/4 of the last session for each.
pub const SignedPhase: u32 = EPOCH_DURATION_IN_SLOTS / 4; pub const SignedPhase: u32 = EPOCH_DURATION_IN_SLOTS / 4;
@@ -345,15 +343,8 @@ parameter_types! {
// This formula is currently adjusted such that a typical solution will spend an amount equal // This formula is currently adjusted such that a typical solution will spend an amount equal
// to the base deposit for every 50 kb. // to the base deposit for every 50 kb.
pub const SignedDepositByte: Balance = deposit(1, 0) / (50 * 1024); pub const SignedDepositByte: Balance = deposit(1, 0) / (50 * 1024);
pub SignedRewardBase: Balance = fee_for_submit_call::<Runtime>( // Each good submission will get 1 WND as reward
// give 20% threshold. pub SignedRewardBase: Balance = 1 * UNITS;
sp_runtime::FixedU128::saturating_from_rational(12, 10),
// maximum weight possible.
weights::pallet_election_provider_multi_phase::WeightInfo::<Runtime>::submit(SignedMaxSubmissions::get()),
// assume a solution of 100kb length.
100 * 1024
);
// fallback: emergency phase. // fallback: emergency phase.
pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy = pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy =
pallet_election_provider_multi_phase::FallbackStrategy::Nothing; pallet_election_provider_multi_phase::FallbackStrategy::Nothing;
@@ -377,6 +368,7 @@ sp_npos_elections::generate_solution_type!(
impl pallet_election_provider_multi_phase::Config for Runtime { impl pallet_election_provider_multi_phase::Config for Runtime {
type Event = Event; type Event = Event;
type Currency = Balances; type Currency = Balances;
type EstimateCallFee = TransactionPayment;
type SignedPhase = SignedPhase; type SignedPhase = SignedPhase;
type UnsignedPhase = UnsignedPhase; type UnsignedPhase = UnsignedPhase;
type SignedMaxSubmissions = SignedMaxSubmissions; type SignedMaxSubmissions = SignedMaxSubmissions;
+1
View File
@@ -36,3 +36,4 @@ fn sample_size_is_sensible() {
assert!(max_weight * 2 < BlockWeights::get().max_block); assert!(max_weight * 2 < BlockWeights::get().max_block);
assert!(<Runtime as auctions::Config>::WeightInfo::on_initialize() * 2 < BlockWeights::get().max_block); assert!(<Runtime as auctions::Config>::WeightInfo::on_initialize() * 2 < BlockWeights::get().max_block);
} }