Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pallets/pallet-lottery/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
//! This pallet implements a no-loss-lottery by taking user deposits, generating excess funds by staking funds with [`pallet_parachain_staking`]
//! and periodically selects a winner from participating users weighted by their deposit amount to receive a claim to the
//! accrued excess funds.
//! Funds withdrawn from the the lottery are subject to a timelock determined by parachain-staking before they can be claimed.
//! Funds withdrawn from the lottery are subject to a timelock determined by parachain-staking before they can be claimed.
//!
//! ### Lottery Rules
//! 1. A drawing is scheduled to happen every [`Config::DrawingInterval`] blocks.
Expand Down
2 changes: 1 addition & 1 deletion runtime/calamari/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ impl pallet_treasury::Config for Runtime {
type WeightInfo = weights::pallet_treasury::SubstrateWeight<Runtime>;
type SpendFunds = ();
// Expects an implementation of `EnsureOrigin` with a `Success` generic,
// which is the the maximum amount that this origin is allowed to spend at a time.
// which is the maximum amount that this origin is allowed to spend at a time.
type SpendOrigin = EnsureWithSuccess<EnsureRoot<AccountId>, AccountId, MaxBalance>;
type Beneficiary = AccountId;
type BeneficiaryLookup = IdentityLookup<Self::Beneficiary>;
Expand Down
2 changes: 1 addition & 1 deletion runtime/manta/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ impl pallet_treasury::Config for Runtime {
type WeightInfo = weights::pallet_treasury::SubstrateWeight<Runtime>;
type SpendFunds = ();
// Expects an implementation of `EnsureOrigin` with a `Success` generic,
// which is the the maximum amount that this origin is allowed to spend at a time.
// which is the maximum amount that this origin is allowed to spend at a time.
type SpendOrigin = EnsureWithSuccess<EnsureRoot<AccountId>, AccountId, MaxBalance>;
type Beneficiary = AccountId;
type BeneficiaryLookup = IdentityLookup<Self::Beneficiary>;
Expand Down