chore: increase period during for windows ci

Because windows is so slow, increase the period duration in the hopes that it can fill slots in time.
This commit is contained in:
Eric 2025-03-26 21:11:07 +11:00 committed by Arnaud
parent 98e73ed0a0
commit 533cad59fa
No known key found for this signature in database
GPG Key ID: 20E40A5D3110766F

View File

@ -8,14 +8,14 @@ module.exports = {
proofs: {
// period has to be less than downtime * blocktime
// blocktime can be 1 second with hardhat in automine mode
period: 90, // seconds
period: 120, // seconds
timeout: 30, // seconds
downtime: 96, // number of blocks
downtimeProduct: 97, // number of blocks
downtime: 144, // number of blocks
downtimeProduct: 149, // number of blocks
zkeyHash: "",
},
reservations: {
maxReservations: 3,
},
requestDurationLimit: 60*60*24*30 // 30 days
requestDurationLimit: 60 * 60 * 24 * 30, // 30 days
}