Remove conditional allowBlocksWithSameTimestamp, set true everytime

This commit is contained in:
Arnaud 2025-04-18 09:28:38 +02:00
parent 3614bfe7ed
commit d3207ed068
No known key found for this signature in database
GPG Key ID: 20E40A5D3110766F
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ module.exports = {
networks: {
hardhat: {
tags: ["local"],
allowBlocksWithSameTimestamp: process.env.NODE_ENV == "test",
allowBlocksWithSameTimestamp: true,
},
localhost: {
tags: ["local"],

View File

@ -2,7 +2,7 @@
"name": "codex-contracts-eth",
"license": "MIT",
"scripts": {
"test": "npm run lint && NODE_ENV=test hardhat test",
"test": "npm run lint && hardhat test",
"fuzz": "hardhat compile && fuzzing/fuzz.sh",
"start": "concurrently --names \"hardhat,deployment\" --prefix \"[{time} {name}]\" \"hardhat node\" \"sleep 2 && npm run deploy\"",
"compile": "hardhat compile",