Skip to content

Commit

Permalink
Adjust the parameters for burning tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
imstar15 committed Nov 20, 2023
1 parent b0f9b92 commit a911f9c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions runtime/turing/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ use common_runtime::{
constants::{
currency::{deposit, CENT, DOLLAR, EXISTENTIAL_DEPOSIT, UNIT},
fees::SlowAdjustingFeeUpdate,
time::{DAYS, HOURS, SLOT_DURATION},
time::{DAYS, HOURS, MINUTES, SLOT_DURATION},
weight_ratios::{
AVERAGE_ON_INITIALIZE_RATIO, MAXIMUM_BLOCK_WEIGHT, NORMAL_DISPATCH_RATIO,
SCHEDULED_TASKS_INITIALIZE_RATIO,
Expand Down Expand Up @@ -820,8 +820,8 @@ parameter_types! {
pub const ProposalBond: Permill = Permill::from_percent(5);
pub const ProposalBondMinimum: Balance = 1 * DOLLAR;
pub const ProposalBondMaximum: Balance = 5 * DOLLAR;
pub const SpendPeriod: BlockNumber = 1 * DAYS;
pub const Burn: Permill = Permill::from_percent(0);
pub const SpendPeriod: BlockNumber = 1 * MINUTES;
pub const Burn: Permill = Permill::from_percent(100);
pub const TipCountdown: BlockNumber = 1 * DAYS;
pub const TipFindersFee: Percent = Percent::from_percent(20);
pub const TipReportDepositBase: Balance = 1 * UNIT;
Expand Down

0 comments on commit a911f9c

Please sign in to comment.