Skip to content

Commit 28089fe

Browse files
authored
leo: fix the auction duration (#326)
1 parent b9595a8 commit 28089fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

runtimes/shared-configuration/src/funding.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ pub const AUCTION_OPENING_DURATION: BlockNumber = 2;
4444
#[cfg(feature = "fast-mode")]
4545
pub const AUCTION_OPENING_DURATION: BlockNumber = 7 * crate::MINUTES;
4646
#[cfg(not(any(feature = "fast-mode", feature = "instant-mode")))]
47-
pub const AUCTION_OPENING_DURATION: BlockNumber = 2 * crate::DAYS;
47+
pub const AUCTION_OPENING_DURATION: BlockNumber = 4 * crate::DAYS;
4848

4949
#[cfg(feature = "instant-mode")]
5050
pub const AUCTION_CLOSING_DURATION: BlockNumber = 2;
5151
#[cfg(feature = "fast-mode")]
5252
pub const AUCTION_CLOSING_DURATION: BlockNumber = 7 * crate::MINUTES;
5353
#[cfg(not(any(feature = "fast-mode", feature = "instant-mode")))]
54-
pub const AUCTION_CLOSING_DURATION: BlockNumber = 3 * crate::DAYS;
54+
pub const AUCTION_CLOSING_DURATION: BlockNumber = 1 * crate::DAYS;
5555

5656
#[cfg(feature = "instant-mode")]
5757
pub const COMMUNITY_FUNDING_DURATION: BlockNumber = 3;

0 commit comments

Comments
 (0)