mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 21:27:57 +00:00
bc6efb0480
* Initial integration of Gilts pallet (Kusama) * Fixes * Fixes * Fixes * Fixes * Fixes * Fixes * cargo run --release --features=runtime-benchmarks -- benchmark --chain=kusama-dev --steps=50 --repeat=20 --pallet=pallet_gilt --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --header=./file_header.txt --output=./runtime/kusama/src/weights/ * Use real weights * Update lock * Merge * Fixes * Add working. * Add proper curve arithmetic * Fixes * Fixes * Make build * Fixes * Fixes * Fix build * remove dep. * undo dep. * upadte substrate * Fix * Bump Substrate * Fixes * Fixes * Fix test * Remove cap and some tests * Fixes * Fixes * Update runtime/kusama/src/lib.rs Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * bump the lock file * Fixes * Fixes * Fixes * Fixes * Fixes * Fixes * Fixes * Fixes * Fixes Co-authored-by: Parity Benchmarking Bot <admin@parity.io> Co-authored-by: kianenigma <kian@parity.io> Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com>
57 lines
1.7 KiB
Rust
57 lines
1.7 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/>.
|
|
|
|
//! Tests for the Kusama Runtime Configuration
|
|
|
|
use crate::*;
|
|
|
|
#[test]
|
|
fn compute_inflation_should_give_sensible_results() {
|
|
assert_eq!(pallet_staking_reward_fn::compute_inflation(
|
|
Perquintill::from_percent(75),
|
|
Perquintill::from_percent(75),
|
|
Perquintill::from_percent(5),
|
|
), Perquintill::one());
|
|
assert_eq!(pallet_staking_reward_fn::compute_inflation(
|
|
Perquintill::from_percent(50),
|
|
Perquintill::from_percent(75),
|
|
Perquintill::from_percent(5),
|
|
), Perquintill::from_rational(2u64, 3u64));
|
|
assert_eq!(pallet_staking_reward_fn::compute_inflation(
|
|
Perquintill::from_percent(80),
|
|
Perquintill::from_percent(75),
|
|
Perquintill::from_percent(5),
|
|
), Perquintill::from_rational(1u64, 2u64));
|
|
}
|
|
|
|
#[test]
|
|
fn era_payout_should_give_sensible_results() {
|
|
assert_eq!(era_payout(
|
|
75,
|
|
100,
|
|
Perquintill::from_percent(10),
|
|
Perquintill::one(),
|
|
0,
|
|
), (10, 0));
|
|
assert_eq!(era_payout(
|
|
80,
|
|
100,
|
|
Perquintill::from_percent(10),
|
|
Perquintill::one(),
|
|
0,
|
|
), (6, 4));
|
|
}
|