Increase proof period

In Codex's integration tests we now create real ZK proofs,
which take a bit longer to generate. We therefore need a
period that remains the same while the proof is generated.
This commit is contained in:
Mark Spanbroek 2024-02-20 17:37:41 +01:00 committed by markspanbroek
parent e5cb3bc571
commit ed54b80fc9
1 changed files with 4 additions and 2 deletions

View File

@ -9,8 +9,10 @@ const CONFIGURATION = {
slashPercentage: 10,
},
proofs: {
period: 10,
timeout: 5,
period: 60,
timeout: 30,
// `downtime` needs to be larger than `period` when running hardhat
// in automine mode, because it can produce a block every second
downtime: 64,
},
}