mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 03:31:05 +00:00
5e7b27e98c
* Initial setup * Adds node block * Uses UncheckedExtrinsic and removes Where section * Updates frame_system to use Block * Adds deprecation warning * Fixes pallet-timestamp * Removes Header and BlockNumber * Addresses review comments * Addresses review comments * Adds comment about compiler bug * Removes where clause * Refactors code * Fixes errors in cargo check * Fixes errors in cargo check * Fixes warnings in cargo check * Formatting * Fixes construct_runtime tests * Uses import instead of full path for BlockNumber * Uses import instead of full path for Header * Formatting * Fixes construct_runtime tests * Fixes imports in benchmarks * Formatting * Fixes construct_runtime tests * Formatting * Minor updates * Fixes construct_runtime ui tests * Fixes construct_runtime ui tests with 1.70 * Fixes docs * Fixes docs * Adds u128 mock block type * Fixes split example * fixes for cumulus * ".git/.scripts/commands/fmt/fmt.sh" * Updates new tests * Fixes fully-qualified path in few places * Formatting * Update frame/examples/default-config/src/lib.rs Co-authored-by: Juan <juangirini@gmail.com> * Update frame/support/procedural/src/construct_runtime/mod.rs Co-authored-by: Juan <juangirini@gmail.com> * ".git/.scripts/commands/fmt/fmt.sh" * Addresses some review comments * Fixes build * ".git/.scripts/commands/fmt/fmt.sh" * Update frame/democracy/src/lib.rs Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update frame/democracy/src/lib.rs Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update frame/support/procedural/src/construct_runtime/mod.rs Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Update frame/support/procedural/src/construct_runtime/mod.rs Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Addresses review comments * Updates trait bounds * Minor fix * ".git/.scripts/commands/fmt/fmt.sh" * Removes unnecessary bound * ".git/.scripts/commands/fmt/fmt.sh" * Updates test * Fixes build * Adds a bound for header * ".git/.scripts/commands/fmt/fmt.sh" * Removes where block * Minor fix * Minor fix * Fixes tests * ".git/.scripts/commands/update-ui/update-ui.sh" 1.70 * Updates test * Update primitives/runtime/src/traits.rs Co-authored-by: Bastian Köcher <git@kchr.de> * Update primitives/runtime/src/traits.rs Co-authored-by: Bastian Köcher <git@kchr.de> * Updates doc * Updates doc --------- Co-authored-by: command-bot <> Co-authored-by: Juan <juangirini@gmail.com> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Bastian Köcher <git@kchr.de>
317 lines
10 KiB
Rust
317 lines
10 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) Parity Technologies (UK) Ltd.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
//! Child-bounties pallet benchmarking.
|
|
|
|
#![cfg(feature = "runtime-benchmarks")]
|
|
|
|
use super::*;
|
|
|
|
use frame_benchmarking::v1::{account, benchmarks, whitelisted_caller, BenchmarkError};
|
|
use frame_system::{pallet_prelude::BlockNumberFor, RawOrigin};
|
|
|
|
use crate::Pallet as ChildBounties;
|
|
use pallet_bounties::Pallet as Bounties;
|
|
use pallet_treasury::Pallet as Treasury;
|
|
|
|
const SEED: u32 = 0;
|
|
|
|
#[derive(Clone)]
|
|
struct BenchmarkChildBounty<T: Config> {
|
|
/// Bounty ID.
|
|
bounty_id: BountyIndex,
|
|
/// ChildBounty ID.
|
|
child_bounty_id: BountyIndex,
|
|
/// The account proposing it.
|
|
caller: T::AccountId,
|
|
/// The master curator account.
|
|
curator: T::AccountId,
|
|
/// The child-bounty curator account.
|
|
child_curator: T::AccountId,
|
|
/// The (total) amount that should be paid if the bounty is rewarded.
|
|
value: BalanceOf<T>,
|
|
/// The curator fee. included in value.
|
|
fee: BalanceOf<T>,
|
|
/// The (total) amount that should be paid if the child-bounty is rewarded.
|
|
child_bounty_value: BalanceOf<T>,
|
|
/// The child-bounty curator fee. included in value.
|
|
child_bounty_fee: BalanceOf<T>,
|
|
/// Bounty description.
|
|
reason: Vec<u8>,
|
|
}
|
|
|
|
fn setup_bounty<T: Config>(
|
|
user: u32,
|
|
description: u32,
|
|
) -> (T::AccountId, T::AccountId, BalanceOf<T>, BalanceOf<T>, Vec<u8>) {
|
|
let caller = account("caller", user, SEED);
|
|
let value: BalanceOf<T> = T::BountyValueMinimum::get().saturating_mul(100u32.into());
|
|
let fee = value / 2u32.into();
|
|
let deposit = T::BountyDepositBase::get() +
|
|
T::DataDepositPerByte::get() * T::MaximumReasonLength::get().into();
|
|
let _ = T::Currency::make_free_balance_be(&caller, deposit + T::Currency::minimum_balance());
|
|
let curator = account("curator", user, SEED);
|
|
let _ = T::Currency::make_free_balance_be(
|
|
&curator,
|
|
fee / 2u32.into() + T::Currency::minimum_balance(),
|
|
);
|
|
let reason = vec![0; description as usize];
|
|
(caller, curator, fee, value, reason)
|
|
}
|
|
|
|
fn setup_child_bounty<T: Config>(user: u32, description: u32) -> BenchmarkChildBounty<T> {
|
|
let (caller, curator, fee, value, reason) = setup_bounty::<T>(user, description);
|
|
let child_curator = account("child-curator", user, SEED);
|
|
let _ = T::Currency::make_free_balance_be(
|
|
&child_curator,
|
|
fee / 2u32.into() + T::Currency::minimum_balance(),
|
|
);
|
|
let child_bounty_value = (value - fee) / 4u32.into();
|
|
let child_bounty_fee = child_bounty_value / 2u32.into();
|
|
|
|
BenchmarkChildBounty::<T> {
|
|
bounty_id: 0,
|
|
child_bounty_id: 0,
|
|
caller,
|
|
curator,
|
|
child_curator,
|
|
value,
|
|
fee,
|
|
child_bounty_value,
|
|
child_bounty_fee,
|
|
reason,
|
|
}
|
|
}
|
|
|
|
fn activate_bounty<T: Config>(
|
|
user: u32,
|
|
description: u32,
|
|
) -> Result<BenchmarkChildBounty<T>, BenchmarkError> {
|
|
let mut child_bounty_setup = setup_child_bounty::<T>(user, description);
|
|
let curator_lookup = T::Lookup::unlookup(child_bounty_setup.curator.clone());
|
|
Bounties::<T>::propose_bounty(
|
|
RawOrigin::Signed(child_bounty_setup.caller.clone()).into(),
|
|
child_bounty_setup.value,
|
|
child_bounty_setup.reason.clone(),
|
|
)?;
|
|
|
|
child_bounty_setup.bounty_id = Bounties::<T>::bounty_count() - 1;
|
|
|
|
let approve_origin =
|
|
T::SpendOrigin::try_successful_origin().map_err(|_| BenchmarkError::Weightless)?;
|
|
Bounties::<T>::approve_bounty(approve_origin, child_bounty_setup.bounty_id)?;
|
|
Treasury::<T>::on_initialize(BlockNumberFor::<T>::zero());
|
|
Bounties::<T>::propose_curator(
|
|
RawOrigin::Root.into(),
|
|
child_bounty_setup.bounty_id,
|
|
curator_lookup,
|
|
child_bounty_setup.fee,
|
|
)?;
|
|
Bounties::<T>::accept_curator(
|
|
RawOrigin::Signed(child_bounty_setup.curator.clone()).into(),
|
|
child_bounty_setup.bounty_id,
|
|
)?;
|
|
|
|
Ok(child_bounty_setup)
|
|
}
|
|
|
|
fn activate_child_bounty<T: Config>(
|
|
user: u32,
|
|
description: u32,
|
|
) -> Result<BenchmarkChildBounty<T>, BenchmarkError> {
|
|
let mut bounty_setup = activate_bounty::<T>(user, description)?;
|
|
let child_curator_lookup = T::Lookup::unlookup(bounty_setup.child_curator.clone());
|
|
|
|
ChildBounties::<T>::add_child_bounty(
|
|
RawOrigin::Signed(bounty_setup.curator.clone()).into(),
|
|
bounty_setup.bounty_id,
|
|
bounty_setup.child_bounty_value,
|
|
bounty_setup.reason.clone(),
|
|
)?;
|
|
|
|
bounty_setup.child_bounty_id = ChildBountyCount::<T>::get() - 1;
|
|
|
|
ChildBounties::<T>::propose_curator(
|
|
RawOrigin::Signed(bounty_setup.curator.clone()).into(),
|
|
bounty_setup.bounty_id,
|
|
bounty_setup.child_bounty_id,
|
|
child_curator_lookup,
|
|
bounty_setup.child_bounty_fee,
|
|
)?;
|
|
|
|
ChildBounties::<T>::accept_curator(
|
|
RawOrigin::Signed(bounty_setup.child_curator.clone()).into(),
|
|
bounty_setup.bounty_id,
|
|
bounty_setup.child_bounty_id,
|
|
)?;
|
|
|
|
Ok(bounty_setup)
|
|
}
|
|
|
|
fn setup_pot_account<T: Config>() {
|
|
let pot_account = Bounties::<T>::account_id();
|
|
let value = T::Currency::minimum_balance().saturating_mul(1_000_000_000u32.into());
|
|
let _ = T::Currency::make_free_balance_be(&pot_account, value);
|
|
}
|
|
|
|
fn assert_last_event<T: Config>(generic_event: <T as Config>::RuntimeEvent) {
|
|
frame_system::Pallet::<T>::assert_last_event(generic_event.into());
|
|
}
|
|
|
|
benchmarks! {
|
|
add_child_bounty {
|
|
let d in 0 .. T::MaximumReasonLength::get();
|
|
setup_pot_account::<T>();
|
|
let bounty_setup = activate_bounty::<T>(0, d)?;
|
|
}: _(RawOrigin::Signed(bounty_setup.curator), bounty_setup.bounty_id,
|
|
bounty_setup.child_bounty_value, bounty_setup.reason.clone())
|
|
verify {
|
|
assert_last_event::<T>(Event::Added {
|
|
index: bounty_setup.bounty_id,
|
|
child_index: bounty_setup.child_bounty_id,
|
|
}.into())
|
|
}
|
|
|
|
propose_curator {
|
|
setup_pot_account::<T>();
|
|
let bounty_setup = activate_bounty::<T>(0, T::MaximumReasonLength::get())?;
|
|
let child_curator_lookup = T::Lookup::unlookup(bounty_setup.child_curator.clone());
|
|
|
|
ChildBounties::<T>::add_child_bounty(
|
|
RawOrigin::Signed(bounty_setup.curator.clone()).into(),
|
|
bounty_setup.bounty_id,
|
|
bounty_setup.child_bounty_value,
|
|
bounty_setup.reason.clone(),
|
|
)?;
|
|
let child_bounty_id = ChildBountyCount::<T>::get() - 1;
|
|
|
|
}: _(RawOrigin::Signed(bounty_setup.curator), bounty_setup.bounty_id,
|
|
child_bounty_id, child_curator_lookup, bounty_setup.child_bounty_fee)
|
|
|
|
accept_curator {
|
|
setup_pot_account::<T>();
|
|
let mut bounty_setup = activate_bounty::<T>(0, T::MaximumReasonLength::get())?;
|
|
let child_curator_lookup = T::Lookup::unlookup(bounty_setup.child_curator.clone());
|
|
|
|
ChildBounties::<T>::add_child_bounty(
|
|
RawOrigin::Signed(bounty_setup.curator.clone()).into(),
|
|
bounty_setup.bounty_id,
|
|
bounty_setup.child_bounty_value,
|
|
bounty_setup.reason.clone(),
|
|
)?;
|
|
bounty_setup.child_bounty_id = ChildBountyCount::<T>::get() - 1;
|
|
|
|
ChildBounties::<T>::propose_curator(
|
|
RawOrigin::Signed(bounty_setup.curator.clone()).into(),
|
|
bounty_setup.bounty_id,
|
|
bounty_setup.child_bounty_id,
|
|
child_curator_lookup,
|
|
bounty_setup.child_bounty_fee,
|
|
)?;
|
|
}: _(RawOrigin::Signed(bounty_setup.child_curator), bounty_setup.bounty_id,
|
|
bounty_setup.child_bounty_id)
|
|
|
|
// Worst case when curator is inactive and any sender un-assigns the curator.
|
|
unassign_curator {
|
|
setup_pot_account::<T>();
|
|
let bounty_setup = activate_child_bounty::<T>(0, T::MaximumReasonLength::get())?;
|
|
Treasury::<T>::on_initialize(BlockNumberFor::<T>::zero());
|
|
frame_system::Pallet::<T>::set_block_number(T::BountyUpdatePeriod::get() + 1u32.into());
|
|
let caller = whitelisted_caller();
|
|
}: _(RawOrigin::Signed(caller), bounty_setup.bounty_id,
|
|
bounty_setup.child_bounty_id)
|
|
|
|
award_child_bounty {
|
|
setup_pot_account::<T>();
|
|
let bounty_setup = activate_child_bounty::<T>(0, T::MaximumReasonLength::get())?;
|
|
let beneficiary_account: T::AccountId = account("beneficiary", 0, SEED);
|
|
let beneficiary = T::Lookup::unlookup(beneficiary_account.clone());
|
|
}: _(RawOrigin::Signed(bounty_setup.child_curator), bounty_setup.bounty_id,
|
|
bounty_setup.child_bounty_id, beneficiary)
|
|
verify {
|
|
assert_last_event::<T>(Event::Awarded {
|
|
index: bounty_setup.bounty_id,
|
|
child_index: bounty_setup.child_bounty_id,
|
|
beneficiary: beneficiary_account
|
|
}.into())
|
|
}
|
|
|
|
claim_child_bounty {
|
|
setup_pot_account::<T>();
|
|
let bounty_setup = activate_child_bounty::<T>(0, T::MaximumReasonLength::get())?;
|
|
let beneficiary_account: T::AccountId = account("beneficiary", 0, SEED);
|
|
let beneficiary = T::Lookup::unlookup(beneficiary_account);
|
|
|
|
ChildBounties::<T>::award_child_bounty(
|
|
RawOrigin::Signed(bounty_setup.child_curator.clone()).into(),
|
|
bounty_setup.bounty_id,
|
|
bounty_setup.child_bounty_id,
|
|
beneficiary
|
|
)?;
|
|
|
|
let beneficiary_account: T::AccountId = account("beneficiary", 0, SEED);
|
|
let beneficiary = T::Lookup::unlookup(beneficiary_account.clone());
|
|
|
|
frame_system::Pallet::<T>::set_block_number(T::BountyDepositPayoutDelay::get());
|
|
ensure!(T::Currency::free_balance(&beneficiary_account).is_zero(),
|
|
"Beneficiary already has balance.");
|
|
|
|
}: _(RawOrigin::Signed(bounty_setup.curator), bounty_setup.bounty_id,
|
|
bounty_setup.child_bounty_id)
|
|
verify {
|
|
ensure!(!T::Currency::free_balance(&beneficiary_account).is_zero(),
|
|
"Beneficiary didn't get paid.");
|
|
}
|
|
|
|
// Best case scenario.
|
|
close_child_bounty_added {
|
|
setup_pot_account::<T>();
|
|
let mut bounty_setup = activate_bounty::<T>(0, T::MaximumReasonLength::get())?;
|
|
|
|
ChildBounties::<T>::add_child_bounty(
|
|
RawOrigin::Signed(bounty_setup.curator.clone()).into(),
|
|
bounty_setup.bounty_id,
|
|
bounty_setup.child_bounty_value,
|
|
bounty_setup.reason.clone(),
|
|
)?;
|
|
bounty_setup.child_bounty_id = ChildBountyCount::<T>::get() - 1;
|
|
|
|
}: close_child_bounty(RawOrigin::Root, bounty_setup.bounty_id,
|
|
bounty_setup.child_bounty_id)
|
|
verify {
|
|
assert_last_event::<T>(Event::Canceled {
|
|
index: bounty_setup.bounty_id,
|
|
child_index: bounty_setup.child_bounty_id
|
|
}.into())
|
|
}
|
|
|
|
// Worst case scenario.
|
|
close_child_bounty_active {
|
|
setup_pot_account::<T>();
|
|
let bounty_setup = activate_child_bounty::<T>(0, T::MaximumReasonLength::get())?;
|
|
Treasury::<T>::on_initialize(BlockNumberFor::<T>::zero());
|
|
}: close_child_bounty(RawOrigin::Root, bounty_setup.bounty_id, bounty_setup.child_bounty_id)
|
|
verify {
|
|
assert_last_event::<T>(Event::Canceled {
|
|
index: bounty_setup.bounty_id,
|
|
child_index: bounty_setup.child_bounty_id,
|
|
}.into())
|
|
}
|
|
|
|
impl_benchmark_test_suite!(ChildBounties, crate::tests::new_test_ext(), crate::tests::Test)
|
|
}
|