diff --git a/frame/bounties/src/lib.rs b/frame/bounties/src/lib.rs index a8b97d9e33b85..ba0d4a5b16cb4 100644 --- a/frame/bounties/src/lib.rs +++ b/frame/bounties/src/lib.rs @@ -185,7 +185,7 @@ pub enum BountyStatus { }, } -// Note :: For backward compatability reasons, +// Note :: For backward compatibility reasons, // pallet-bounties uses Treasury for storage. // This is temporary solution, soon will get replaced with // Own storage identifier. @@ -270,6 +270,9 @@ decl_module! { /// The delay period for which a bounty beneficiary need to wait before claim the payout. const BountyDepositPayoutDelay: T::BlockNumber = T::BountyDepositPayoutDelay::get(); + /// Bounty duration in blocks. + const BountyUpdatePeriod: T::BlockNumber = T::BountyUpdatePeriod::get(); + /// Percentage of the curator fee that will be reserved upfront as deposit for bounty curator. const BountyCuratorDeposit: Permill = T::BountyCuratorDeposit::get();