Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
asiniscalchi committed Aug 28, 2024
1 parent 667c1df commit 1355783
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions runtime/laos/src/configs/treasury.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ use frame_support::{
PalletId,
};
use frame_system::EnsureRoot;
#[cfg(not(feature = "fast-mode"))]
use parachains_common::DAYS;
#[cfg(feature = "fast-mode")]
use parachains_common::MINUTES;
#[cfg(not(feature = "fast-mode"))]
use parachains_common::DAYS;
use sp_runtime::traits::IdentityLookup;

#[cfg(feature = "fast-mode")]
const TREASURY_SPENDING_PRERIOD: BlockNumber = 5 * MINUTES;
const TREASURY_SPENDING_PERIOD: BlockNumber = 5 * MINUTES;
#[cfg(not(feature = "fast-mode"))]
const TREASURY_SPENDING_PRERIOD: BlockNumber = 7 * DAYS;
const TREASURY_SPENDING_PERIOD: BlockNumber = 7 * DAYS;

parameter_types! {
pub const ProposalBond: Permill = Permill::from_percent(5);
pub const ProposalBondMinimum: Balance = 100 * UNIT;
pub const SpendPeriod: BlockNumber = TREASURY_SPENDING_PRERIOD;
pub const SpendPeriod: BlockNumber = TREASURY_SPENDING_PERIOD;
pub const MaxApprovals: u32 = 100;
pub const TreasuryId: PalletId = PalletId(*b"py/trsry");
pub const PayoutPeriod: BlockNumber = 5;
Expand Down

0 comments on commit 1355783

Please sign in to comment.