Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔖 Release Polimec 1.0.0 #466

Merged
merged 2 commits into from
Mar 10, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
feat: funding round should last 2 weeks
  • Loading branch information
lrazovic authored Mar 9, 2025
commit 879f2565495dc68bfa6180d22d158a3c288bc770
2 changes: 1 addition & 1 deletion runtimes/shared-configuration/src/funding.rs
Original file line number Diff line number Diff line change
@@ -34,7 +34,7 @@ pub const AUCTION_ROUND_DURATION: BlockNumber = 7;
#[cfg(feature = "fast-mode")]
pub const AUCTION_ROUND_DURATION: BlockNumber = 120 * crate::MINUTES;
#[cfg(not(any(feature = "fast-mode", feature = "instant-mode")))]
pub const AUCTION_ROUND_DURATION: BlockNumber = 7 * crate::DAYS;
pub const AUCTION_ROUND_DURATION: BlockNumber = 14 * crate::DAYS;

pub type ProjectIdentifier = u32;