mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-08 21:48:02 +00:00
acf1b77bcd
If no return type is specified, `Result` is added and `Ok(())` is returned by default. Closes: #1182
484 lines
15 KiB
Rust
484 lines
15 KiB
Rust
// Copyright 2017-2018 Parity Technologies (UK) Ltd.
|
|
// This file is part of Substrate.
|
|
|
|
// Substrate 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.
|
|
|
|
// Substrate 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 Substrate. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! The Treasury: Keeps account of the taxed cash and handles its deployment.
|
|
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
extern crate sr_std as rstd;
|
|
|
|
#[macro_use]
|
|
extern crate srml_support as runtime_support;
|
|
|
|
#[cfg(test)]
|
|
extern crate sr_io as runtime_io;
|
|
#[cfg(feature = "std")]
|
|
extern crate serde;
|
|
|
|
#[macro_use]
|
|
extern crate parity_codec_derive;
|
|
|
|
extern crate parity_codec as codec;
|
|
#[cfg(test)]
|
|
extern crate substrate_primitives;
|
|
extern crate sr_primitives as runtime_primitives;
|
|
extern crate srml_system as system;
|
|
extern crate srml_balances as balances;
|
|
|
|
use rstd::prelude::*;
|
|
use runtime_support::{StorageValue, StorageMap};
|
|
use runtime_primitives::{Permill, traits::{Zero, EnsureOrigin}};
|
|
use codec::{HasCompact, Compact};
|
|
use balances::{OnDilution, address::Address};
|
|
use system::ensure_signed;
|
|
|
|
/// Our module's configuration trait. All our types and consts go in here. If the
|
|
/// module is dependent on specific other modules, then their configuration traits
|
|
/// should be added to our implied traits list.
|
|
///
|
|
/// `system::Trait` should always be included in our implied traits.
|
|
pub trait Trait: balances::Trait {
|
|
/// Origin from which approvals must come.
|
|
type ApproveOrigin: EnsureOrigin<Self::Origin>;
|
|
|
|
/// Origin from which rejections must come.
|
|
type RejectOrigin: EnsureOrigin<Self::Origin>;
|
|
|
|
/// The overarching event type.
|
|
type Event: From<Event<Self>> + Into<<Self as system::Trait>::Event>;
|
|
}
|
|
|
|
type ProposalIndex = u32;
|
|
|
|
// The module declaration. This states the entry points that we handle. The
|
|
// macro takes care of the marshalling of arguments and dispatch.
|
|
decl_module! {
|
|
// Simple declaration of the `Module` type. Lets the macro know what its working on.
|
|
pub struct Module<T: Trait> for enum Call where origin: T::Origin {
|
|
fn deposit_event() = default;
|
|
/// Put forward a suggestion for spending. A deposit proportional to the value
|
|
/// is reserved and slashed if the proposal is rejected. It is returned once the
|
|
/// proposal is awarded.
|
|
fn propose_spend(
|
|
origin,
|
|
value: <T::Balance as HasCompact>::Type,
|
|
beneficiary: Address<T::AccountId, T::AccountIndex>
|
|
) {
|
|
let proposer = ensure_signed(origin)?;
|
|
let beneficiary = <balances::Module<T>>::lookup(beneficiary)?;
|
|
let value = value.into();
|
|
|
|
let bond = Self::calculate_bond(value);
|
|
<balances::Module<T>>::reserve(&proposer, bond)
|
|
.map_err(|_| "Proposer's balance too low")?;
|
|
|
|
let c = Self::proposal_count();
|
|
<ProposalCount<T>>::put(c + 1);
|
|
<Proposals<T>>::insert(c, Proposal { proposer, value, beneficiary, bond });
|
|
|
|
Self::deposit_event(RawEvent::Proposed(c));
|
|
}
|
|
|
|
/// Set the balance of funds available to spend.
|
|
fn set_pot(new_pot: <T::Balance as HasCompact>::Type) {
|
|
// Put the new value into storage.
|
|
<Pot<T>>::put(new_pot.into());
|
|
}
|
|
|
|
/// (Re-)configure this module.
|
|
fn configure(
|
|
proposal_bond: Permill,
|
|
proposal_bond_minimum: <T::Balance as HasCompact>::Type,
|
|
spend_period: <T::BlockNumber as HasCompact>::Type,
|
|
burn: Permill
|
|
) {
|
|
<ProposalBond<T>>::put(proposal_bond);
|
|
<ProposalBondMinimum<T>>::put(proposal_bond_minimum.into());
|
|
<SpendPeriod<T>>::put(spend_period.into());
|
|
<Burn<T>>::put(burn);
|
|
}
|
|
|
|
/// Reject a proposed spend. The original deposit will be slashed.
|
|
fn reject_proposal(origin, proposal_id: Compact<ProposalIndex>) {
|
|
T::RejectOrigin::ensure_origin(origin)?;
|
|
let proposal_id: ProposalIndex = proposal_id.into();
|
|
|
|
let proposal = <Proposals<T>>::take(proposal_id).ok_or("No proposal at that index")?;
|
|
|
|
let value = proposal.bond;
|
|
let _ = <balances::Module<T>>::slash_reserved(&proposal.proposer, value);
|
|
}
|
|
|
|
/// Approve a proposal. At a later time, the proposal will be allocated to the beneficiary
|
|
/// and the original deposit will be returned.
|
|
fn approve_proposal(origin, proposal_id: Compact<ProposalIndex>) {
|
|
T::ApproveOrigin::ensure_origin(origin)?;
|
|
let proposal_id = proposal_id.into();
|
|
|
|
ensure!(<Proposals<T>>::exists(proposal_id), "No proposal at that index");
|
|
|
|
<Approvals<T>>::mutate(|v| v.push(proposal_id));
|
|
}
|
|
|
|
fn on_finalise(n: T::BlockNumber) {
|
|
// Check to see if we should spend some funds!
|
|
if (n % Self::spend_period()).is_zero() {
|
|
Self::spend_funds();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// A spending proposal.
|
|
#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))]
|
|
#[derive(Encode, Decode, Clone, PartialEq, Eq)]
|
|
pub struct Proposal<AccountId, Balance> {
|
|
proposer: AccountId,
|
|
value: Balance,
|
|
beneficiary: AccountId,
|
|
bond: Balance,
|
|
}
|
|
|
|
decl_storage! {
|
|
trait Store for Module<T: Trait> as Treasury {
|
|
// Config...
|
|
|
|
/// Proportion of funds that should be bonded in order to place a proposal. An accepted
|
|
/// proposal gets these back. A rejected proposal doesn't.
|
|
ProposalBond get(proposal_bond) config(): Permill;
|
|
|
|
/// Minimum amount of funds that should be placed in a deposit for making a proposal.
|
|
ProposalBondMinimum get(proposal_bond_minimum) config(): T::Balance;
|
|
|
|
/// Period between successive spends.
|
|
SpendPeriod get(spend_period) config(): T::BlockNumber = runtime_primitives::traits::One::one();
|
|
|
|
/// Percentage of spare funds (if any) that are burnt per spend period.
|
|
Burn get(burn) config(): Permill;
|
|
|
|
// State...
|
|
|
|
/// Total funds available to this module for spending.
|
|
Pot get(pot): T::Balance;
|
|
|
|
/// Number of proposals that have been made.
|
|
ProposalCount get(proposal_count): ProposalIndex;
|
|
|
|
/// Proposals that have been made.
|
|
Proposals get(proposals): map ProposalIndex => Option<Proposal<T::AccountId, T::Balance>>;
|
|
|
|
/// Proposal indices that have been approved but not yet awarded.
|
|
Approvals get(approvals): Vec<ProposalIndex>;
|
|
}
|
|
}
|
|
|
|
/// An event in this module.
|
|
decl_event!(
|
|
pub enum Event<T> where <T as balances::Trait>::Balance, <T as system::Trait>::AccountId {
|
|
/// New proposal.
|
|
Proposed(ProposalIndex),
|
|
/// We have ended a spend period and will now allocate funds.
|
|
Spending(Balance),
|
|
/// Some funds have been allocated.
|
|
Awarded(ProposalIndex, Balance, AccountId),
|
|
/// Some of our funds have been burnt.
|
|
Burnt(Balance),
|
|
/// Spending has finished; this is the amount that rolls over until next spend.
|
|
Rollover(Balance),
|
|
}
|
|
);
|
|
|
|
impl<T: Trait> Module<T> {
|
|
// Add public immutables and private mutables.
|
|
|
|
/// The needed bond for a proposal whose spend is `value`.
|
|
fn calculate_bond(value: T::Balance) -> T::Balance {
|
|
Self::proposal_bond_minimum().max(Self::proposal_bond().times(value))
|
|
}
|
|
|
|
// Spend some money!
|
|
fn spend_funds() {
|
|
let mut budget_remaining = Self::pot();
|
|
Self::deposit_event(RawEvent::Spending(budget_remaining));
|
|
|
|
let mut missed_any = false;
|
|
<Approvals<T>>::mutate(|v| {
|
|
v.retain(|&index| {
|
|
// Should always be true, but shouldn't panic if false or we're screwed.
|
|
if let Some(p) = Self::proposals(index) {
|
|
if p.value <= budget_remaining {
|
|
budget_remaining -= p.value;
|
|
<Proposals<T>>::remove(index);
|
|
|
|
// return their deposit.
|
|
let _ = <balances::Module<T>>::unreserve(&p.proposer, p.bond);
|
|
|
|
// provide the allocation.
|
|
<balances::Module<T>>::increase_free_balance_creating(&p.beneficiary, p.value);
|
|
|
|
Self::deposit_event(RawEvent::Awarded(index, p.value, p.beneficiary));
|
|
false
|
|
} else {
|
|
missed_any = true;
|
|
true
|
|
}
|
|
} else {
|
|
false
|
|
}
|
|
});
|
|
});
|
|
|
|
if !missed_any {
|
|
// burn some proportion of the remaining budget if we run a surplus.
|
|
let burn = Self::burn().times(budget_remaining).min(budget_remaining);
|
|
budget_remaining -= burn;
|
|
Self::deposit_event(RawEvent::Burnt(burn))
|
|
}
|
|
|
|
Self::deposit_event(RawEvent::Rollover(budget_remaining));
|
|
|
|
<Pot<T>>::put(budget_remaining);
|
|
}
|
|
}
|
|
|
|
impl<T: Trait> OnDilution<T::Balance> for Module<T> {
|
|
fn on_dilution(minted: T::Balance, portion: T::Balance) {
|
|
// Mint extra funds for the treasury to keep the ratio of portion to total_issuance equal
|
|
// pre dilution and post-dilution.
|
|
if !minted.is_zero() && !portion.is_zero() {
|
|
let total_issuance = <balances::Module<T>>::total_issuance();
|
|
let funding = (total_issuance - portion) / portion * minted;
|
|
<Pot<T>>::mutate(|x| *x += funding);
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
use runtime_io::with_externalities;
|
|
use substrate_primitives::{H256, Blake2Hasher};
|
|
use runtime_primitives::BuildStorage;
|
|
use runtime_primitives::traits::{BlakeTwo256, OnFinalise};
|
|
use runtime_primitives::testing::{Digest, DigestItem, Header};
|
|
|
|
impl_outer_origin! {
|
|
pub enum Origin for Test {}
|
|
}
|
|
|
|
#[derive(Clone, Eq, PartialEq)]
|
|
pub struct Test;
|
|
impl system::Trait for Test {
|
|
type Origin = Origin;
|
|
type Index = u64;
|
|
type BlockNumber = u64;
|
|
type Hash = H256;
|
|
type Hashing = BlakeTwo256;
|
|
type Digest = Digest;
|
|
type AccountId = u64;
|
|
type Header = Header;
|
|
type Event = ();
|
|
type Log = DigestItem;
|
|
}
|
|
impl balances::Trait for Test {
|
|
type Balance = u64;
|
|
type AccountIndex = u64;
|
|
type OnFreeBalanceZero = ();
|
|
type EnsureAccountLiquid = ();
|
|
type Event = ();
|
|
}
|
|
impl Trait for Test {
|
|
type ApproveOrigin = system::EnsureRoot<u64>;
|
|
type RejectOrigin = system::EnsureRoot<u64>;
|
|
type Event = ();
|
|
}
|
|
type Balances = balances::Module<Test>;
|
|
type Treasury = Module<Test>;
|
|
|
|
fn new_test_ext() -> runtime_io::TestExternalities<Blake2Hasher> {
|
|
let mut t = system::GenesisConfig::<Test>::default().build_storage().unwrap().0;
|
|
t.extend(balances::GenesisConfig::<Test>{
|
|
balances: vec![(0, 100), (1, 99), (2, 1)],
|
|
transaction_base_fee: 0,
|
|
transaction_byte_fee: 0,
|
|
transfer_fee: 0,
|
|
creation_fee: 0,
|
|
existential_deposit: 0,
|
|
reclaim_rebate: 0,
|
|
}.build_storage().unwrap().0);
|
|
t.extend(GenesisConfig::<Test>{
|
|
proposal_bond: Permill::from_percent(5),
|
|
proposal_bond_minimum: 1,
|
|
spend_period: 2,
|
|
burn: Permill::from_percent(50),
|
|
}.build_storage().unwrap().0);
|
|
t.into()
|
|
}
|
|
|
|
#[test]
|
|
fn genesis_config_works() {
|
|
with_externalities(&mut new_test_ext(), || {
|
|
assert_eq!(Treasury::proposal_bond(), Permill::from_percent(5));
|
|
assert_eq!(Treasury::proposal_bond_minimum(), 1);
|
|
assert_eq!(Treasury::spend_period(), 2);
|
|
assert_eq!(Treasury::burn(), Permill::from_percent(50));
|
|
assert_eq!(Treasury::pot(), 0);
|
|
assert_eq!(Treasury::proposal_count(), 0);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn minting_works() {
|
|
with_externalities(&mut new_test_ext(), || {
|
|
// Check that accumulate works when we have Some value in Dummy already.
|
|
Treasury::on_dilution(100, 100);
|
|
assert_eq!(Treasury::pot(), 100);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn spend_proposal_takes_min_deposit() {
|
|
with_externalities(&mut new_test_ext(), || {
|
|
assert_ok!(Treasury::propose_spend(Origin::signed(0), 1.into(), Address::Id(3)));
|
|
assert_eq!(Balances::free_balance(&0), 99);
|
|
assert_eq!(Balances::reserved_balance(&0), 1);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn spend_proposal_takes_proportional_deposit() {
|
|
with_externalities(&mut new_test_ext(), || {
|
|
assert_ok!(Treasury::propose_spend(Origin::signed(0), 100.into(), Address::Id(3)));
|
|
assert_eq!(Balances::free_balance(&0), 95);
|
|
assert_eq!(Balances::reserved_balance(&0), 5);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn spend_proposal_fails_when_proposer_poor() {
|
|
with_externalities(&mut new_test_ext(), || {
|
|
assert_noop!(Treasury::propose_spend(Origin::signed(2), 100.into(), Address::Id(3)), "Proposer's balance too low");
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn accepted_spend_proposal_ignored_outside_spend_period() {
|
|
with_externalities(&mut new_test_ext(), || {
|
|
Treasury::on_dilution(100, 100);
|
|
|
|
assert_ok!(Treasury::propose_spend(Origin::signed(0), 100.into(), Address::Id(3)));
|
|
assert_ok!(Treasury::approve_proposal(Origin::ROOT, 0.into()));
|
|
|
|
<Treasury as OnFinalise<u64>>::on_finalise(1);
|
|
assert_eq!(Balances::free_balance(&3), 0);
|
|
assert_eq!(Treasury::pot(), 100);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn unused_pot_should_diminish() {
|
|
with_externalities(&mut new_test_ext(), || {
|
|
Treasury::on_dilution(100, 100);
|
|
|
|
<Treasury as OnFinalise<u64>>::on_finalise(2);
|
|
assert_eq!(Treasury::pot(), 50);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn rejected_spend_proposal_ignored_on_spend_period() {
|
|
with_externalities(&mut new_test_ext(), || {
|
|
Treasury::on_dilution(100, 100);
|
|
|
|
assert_ok!(Treasury::propose_spend(Origin::signed(0), 100.into(), Address::Id(3)));
|
|
assert_ok!(Treasury::reject_proposal(Origin::ROOT, 0.into()));
|
|
|
|
<Treasury as OnFinalise<u64>>::on_finalise(2);
|
|
assert_eq!(Balances::free_balance(&3), 0);
|
|
assert_eq!(Treasury::pot(), 50);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn reject_already_rejected_spend_proposal_fails() {
|
|
with_externalities(&mut new_test_ext(), || {
|
|
Treasury::on_dilution(100, 100);
|
|
|
|
assert_ok!(Treasury::propose_spend(Origin::signed(0), 100.into(), Address::Id(3)));
|
|
assert_ok!(Treasury::reject_proposal(Origin::ROOT, 0.into()));
|
|
assert_noop!(Treasury::reject_proposal(Origin::ROOT, 0.into()), "No proposal at that index");
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn reject_non_existant_spend_proposal_fails() {
|
|
with_externalities(&mut new_test_ext(), || {
|
|
assert_noop!(Treasury::reject_proposal(Origin::ROOT, 0.into()), "No proposal at that index");
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn accept_non_existant_spend_proposal_fails() {
|
|
with_externalities(&mut new_test_ext(), || {
|
|
assert_noop!(Treasury::approve_proposal(Origin::ROOT, 0.into()), "No proposal at that index");
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn accept_already_rejected_spend_proposal_fails() {
|
|
with_externalities(&mut new_test_ext(), || {
|
|
Treasury::on_dilution(100, 100);
|
|
|
|
assert_ok!(Treasury::propose_spend(Origin::signed(0), 100.into(), Address::Id(3)));
|
|
assert_ok!(Treasury::reject_proposal(Origin::ROOT, 0.into()));
|
|
assert_noop!(Treasury::approve_proposal(Origin::ROOT, 0.into()), "No proposal at that index");
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn accepted_spend_proposal_enacted_on_spend_period() {
|
|
with_externalities(&mut new_test_ext(), || {
|
|
Treasury::on_dilution(100, 100);
|
|
|
|
assert_ok!(Treasury::propose_spend(Origin::signed(0), 100.into(), Address::Id(3)));
|
|
assert_ok!(Treasury::approve_proposal(Origin::ROOT, 0.into()));
|
|
|
|
<Treasury as OnFinalise<u64>>::on_finalise(2);
|
|
assert_eq!(Balances::free_balance(&3), 100);
|
|
assert_eq!(Treasury::pot(), 0);
|
|
});
|
|
}
|
|
|
|
#[test]
|
|
fn pot_underflow_should_not_diminish() {
|
|
with_externalities(&mut new_test_ext(), || {
|
|
Treasury::on_dilution(100, 100);
|
|
|
|
assert_ok!(Treasury::propose_spend(Origin::signed(0), 150.into(), Address::Id(3)));
|
|
assert_ok!(Treasury::approve_proposal(Origin::ROOT, 0.into()));
|
|
|
|
<Treasury as OnFinalise<u64>>::on_finalise(2);
|
|
assert_eq!(Treasury::pot(), 100);
|
|
|
|
Treasury::on_dilution(100, 100);
|
|
<Treasury as OnFinalise<u64>>::on_finalise(4);
|
|
assert_eq!(Balances::free_balance(&3), 150);
|
|
assert_eq!(Treasury::pot(), 25);
|
|
});
|
|
}
|
|
}
|