Skip to content

Commit

Permalink
disable treasury burn (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
ark930 authored Aug 30, 2021
1 parent cc4e34d commit 1d8a8aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/bifrost/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ parameter_types! {
pub const ProposalBond: Permill = Permill::from_percent(5);
pub const ProposalBondMinimum: Balance = 100 * DOLLARS;
pub const SpendPeriod: BlockNumber = 6 * DAYS;
pub const Burn: Permill = Permill::from_perthousand(2);
pub const Burn: Permill = Permill::from_perthousand(0);

pub const TipCountdown: BlockNumber = 1 * DAYS;
pub const TipFindersFee: Percent = Percent::from_percent(20);
Expand All @@ -489,7 +489,7 @@ type ApproveOrigin = EnsureOneOf<
impl pallet_treasury::Config for Runtime {
type ApproveOrigin = ApproveOrigin;
type Burn = Burn;
type BurnDestination = Treasury;
type BurnDestination = ();
type Currency = Balances;
type Event = Event;
type MaxApprovals = MaxApprovals;
Expand Down

0 comments on commit 1d8a8aa

Please sign in to comment.