mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 19:47:59 +00:00
9800d22b1d
* Remove Filter and use Contains instead * Fixes * Remove patch * Formatting * update Substrate Co-authored-by: parity-processbot <>
216 lines
6.8 KiB
Rust
216 lines
6.8 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/>.
|
|
|
|
//! Auxiliary `struct`/`enum`s for polkadot runtime.
|
|
|
|
use crate::NegativeImbalance;
|
|
use frame_support::traits::{Currency, Imbalance, OnUnbalanced};
|
|
|
|
/// Logic for the author to get a portion of fees.
|
|
pub struct ToAuthor<R>(sp_std::marker::PhantomData<R>);
|
|
impl<R> OnUnbalanced<NegativeImbalance<R>> for ToAuthor<R>
|
|
where
|
|
R: pallet_balances::Config + pallet_authorship::Config,
|
|
<R as frame_system::Config>::AccountId: From<primitives::v1::AccountId>,
|
|
<R as frame_system::Config>::AccountId: Into<primitives::v1::AccountId>,
|
|
<R as frame_system::Config>::Event: From<pallet_balances::Event<R>>,
|
|
{
|
|
fn on_nonzero_unbalanced(amount: NegativeImbalance<R>) {
|
|
let numeric_amount = amount.peek();
|
|
let author = <pallet_authorship::Pallet<R>>::author();
|
|
<pallet_balances::Pallet<R>>::resolve_creating(
|
|
&<pallet_authorship::Pallet<R>>::author(),
|
|
amount,
|
|
);
|
|
<frame_system::Pallet<R>>::deposit_event(pallet_balances::Event::Deposit(
|
|
author,
|
|
numeric_amount,
|
|
));
|
|
}
|
|
}
|
|
|
|
pub struct DealWithFees<R>(sp_std::marker::PhantomData<R>);
|
|
impl<R> OnUnbalanced<NegativeImbalance<R>> for DealWithFees<R>
|
|
where
|
|
R: pallet_balances::Config + pallet_treasury::Config + pallet_authorship::Config,
|
|
pallet_treasury::Pallet<R>: OnUnbalanced<NegativeImbalance<R>>,
|
|
<R as frame_system::Config>::AccountId: From<primitives::v1::AccountId>,
|
|
<R as frame_system::Config>::AccountId: Into<primitives::v1::AccountId>,
|
|
<R as frame_system::Config>::Event: From<pallet_balances::Event<R>>,
|
|
{
|
|
fn on_unbalanceds<B>(mut fees_then_tips: impl Iterator<Item = NegativeImbalance<R>>) {
|
|
if let Some(fees) = fees_then_tips.next() {
|
|
// for fees, 80% to treasury, 20% to author
|
|
let mut split = fees.ration(80, 20);
|
|
if let Some(tips) = fees_then_tips.next() {
|
|
// for tips, if any, 100% to author
|
|
tips.merge_into(&mut split.1);
|
|
}
|
|
use pallet_treasury::Pallet as Treasury;
|
|
<Treasury<R> as OnUnbalanced<_>>::on_unbalanced(split.0);
|
|
<ToAuthor<R> as OnUnbalanced<_>>::on_unbalanced(split.1);
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use frame_support::{parameter_types, traits::FindAuthor, weights::DispatchClass, PalletId};
|
|
use frame_system::limits;
|
|
use primitives::v1::AccountId;
|
|
use sp_core::H256;
|
|
use sp_runtime::{
|
|
testing::Header,
|
|
traits::{BlakeTwo256, IdentityLookup},
|
|
Perbill,
|
|
};
|
|
|
|
type UncheckedExtrinsic = frame_system::mocking::MockUncheckedExtrinsic<Test>;
|
|
type Block = frame_system::mocking::MockBlock<Test>;
|
|
|
|
frame_support::construct_runtime!(
|
|
pub enum Test where
|
|
Block = Block,
|
|
NodeBlock = Block,
|
|
UncheckedExtrinsic = UncheckedExtrinsic,
|
|
{
|
|
System: frame_system::{Pallet, Call, Config, Storage, Event<T>},
|
|
Authorship: pallet_authorship::{Pallet, Call, Storage, Inherent},
|
|
Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>},
|
|
Treasury: pallet_treasury::{Pallet, Call, Storage, Config, Event<T>},
|
|
}
|
|
);
|
|
|
|
parameter_types! {
|
|
pub const BlockHashCount: u64 = 250;
|
|
pub BlockWeights: limits::BlockWeights = limits::BlockWeights::builder()
|
|
.base_block(10)
|
|
.for_class(DispatchClass::all(), |weight| {
|
|
weight.base_extrinsic = 100;
|
|
})
|
|
.for_class(DispatchClass::non_mandatory(), |weight| {
|
|
weight.max_total = Some(1024);
|
|
})
|
|
.build_or_panic();
|
|
pub BlockLength: limits::BlockLength = limits::BlockLength::max(2 * 1024);
|
|
pub const AvailableBlockRatio: Perbill = Perbill::one();
|
|
}
|
|
|
|
impl frame_system::Config for Test {
|
|
type BaseCallFilter = frame_support::traits::Everything;
|
|
type Origin = Origin;
|
|
type Index = u64;
|
|
type BlockNumber = u64;
|
|
type Call = Call;
|
|
type Hash = H256;
|
|
type Hashing = BlakeTwo256;
|
|
type AccountId = AccountId;
|
|
type Lookup = IdentityLookup<Self::AccountId>;
|
|
type Header = Header;
|
|
type Event = Event;
|
|
type BlockHashCount = BlockHashCount;
|
|
type BlockLength = BlockLength;
|
|
type BlockWeights = BlockWeights;
|
|
type DbWeight = ();
|
|
type Version = ();
|
|
type PalletInfo = PalletInfo;
|
|
type AccountData = pallet_balances::AccountData<u64>;
|
|
type OnNewAccount = ();
|
|
type OnKilledAccount = ();
|
|
type SystemWeightInfo = ();
|
|
type SS58Prefix = ();
|
|
type OnSetCode = ();
|
|
}
|
|
|
|
impl pallet_balances::Config for Test {
|
|
type Balance = u64;
|
|
type Event = Event;
|
|
type DustRemoval = ();
|
|
type ExistentialDeposit = ();
|
|
type AccountStore = System;
|
|
type MaxLocks = ();
|
|
type MaxReserves = ();
|
|
type ReserveIdentifier = [u8; 8];
|
|
type WeightInfo = ();
|
|
}
|
|
|
|
parameter_types! {
|
|
pub const TreasuryPalletId: PalletId = PalletId(*b"py/trsry");
|
|
pub const MaxApprovals: u32 = 100;
|
|
}
|
|
|
|
impl pallet_treasury::Config for Test {
|
|
type Currency = pallet_balances::Pallet<Test>;
|
|
type ApproveOrigin = frame_system::EnsureRoot<AccountId>;
|
|
type RejectOrigin = frame_system::EnsureRoot<AccountId>;
|
|
type Event = Event;
|
|
type OnSlash = ();
|
|
type ProposalBond = ();
|
|
type ProposalBondMinimum = ();
|
|
type SpendPeriod = ();
|
|
type Burn = ();
|
|
type BurnDestination = ();
|
|
type PalletId = TreasuryPalletId;
|
|
type SpendFunds = ();
|
|
type MaxApprovals = MaxApprovals;
|
|
type WeightInfo = ();
|
|
}
|
|
|
|
pub struct OneAuthor;
|
|
impl FindAuthor<AccountId> for OneAuthor {
|
|
fn find_author<'a, I>(_: I) -> Option<AccountId>
|
|
where
|
|
I: 'a,
|
|
{
|
|
Some(Default::default())
|
|
}
|
|
}
|
|
impl pallet_authorship::Config for Test {
|
|
type FindAuthor = OneAuthor;
|
|
type UncleGenerations = ();
|
|
type FilterUncle = ();
|
|
type EventHandler = ();
|
|
}
|
|
|
|
pub fn new_test_ext() -> sp_io::TestExternalities {
|
|
let mut t = frame_system::GenesisConfig::default().build_storage::<Test>().unwrap();
|
|
// We use default for brevity, but you can configure as desired if needed.
|
|
pallet_balances::GenesisConfig::<Test>::default()
|
|
.assimilate_storage(&mut t)
|
|
.unwrap();
|
|
t.into()
|
|
}
|
|
|
|
#[test]
|
|
fn test_fees_and_tip_split() {
|
|
new_test_ext().execute_with(|| {
|
|
let fee = Balances::issue(10);
|
|
let tip = Balances::issue(20);
|
|
|
|
assert_eq!(Balances::free_balance(Treasury::account_id()), 0);
|
|
assert_eq!(Balances::free_balance(AccountId::default()), 0);
|
|
|
|
DealWithFees::on_unbalanceds(vec![fee, tip].into_iter());
|
|
|
|
// Author gets 100% of tip and 20% of fee = 22
|
|
assert_eq!(Balances::free_balance(AccountId::default()), 22);
|
|
// Treasury gets 80% of fee
|
|
assert_eq!(Balances::free_balance(Treasury::account_id()), 8);
|
|
});
|
|
}
|
|
}
|