Increase proof period to 90 seconds on hardhat network
reason: on windows, integration tests run so slow that they cannot fill a slot within 60 seconds
This commit is contained in:
parent
11ccefd720
commit
945f6008c8
|
@ -8,10 +8,10 @@ module.exports = {
|
|||
proofs: {
|
||||
// period has to be less than downtime * blocktime
|
||||
// blocktime can be 1 second with hardhat in automine mode
|
||||
period: 60, // seconds
|
||||
period: 90, // seconds
|
||||
timeout: 30, // seconds
|
||||
downtime: 64, // number of blocks
|
||||
downtimeProduct: 67 // number of blocks
|
||||
downtime: 96, // number of blocks
|
||||
downtimeProduct: 97 // number of blocks
|
||||
},
|
||||
reservations: {
|
||||
maxReservations: 3
|
||||
|
|
Loading…
Reference in New Issue