From 533cad59fa5f68078a4c476aeee408051c952c31 Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Wed, 26 Mar 2025 21:11:07 +1100 Subject: [PATCH] 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. --- configuration/networks/hardhat/configuration.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configuration/networks/hardhat/configuration.js b/configuration/networks/hardhat/configuration.js index d8ffafe..abfaff3 100644 --- a/configuration/networks/hardhat/configuration.js +++ b/configuration/networks/hardhat/configuration.js @@ -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 }