Unverified Commit 4705cbc4 authored by Rob's avatar Rob Committed by GitHub

Merge pull request #1597 from ethereum/fix-hardhat-timeout

fixing hardhat timeout issue
parents ea1f7539 a1f0dc5d
......@@ -12,6 +12,7 @@ export class RemixEngine extends Engine {
if (name === 'LearnEth') return { queueTimeout: 60000 }
if (name === 'dGitProvider') return { queueTimeout: 60000 * 4 }
if (name === 'slither') return { queueTimeout: 60000 * 4 } // Requires when a solc version is installed
if (name === 'hardhat') return { queueTimeout: 60000 * 4 }
return { queueTimeout: 10000 }
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment