diff --git a/apps/remix-ide/src/app.js b/apps/remix-ide/src/app.js index 1115564302..74b87ec317 100644 --- a/apps/remix-ide/src/app.js +++ b/apps/remix-ide/src/app.js @@ -240,9 +240,8 @@ Please make a backup of your contracts and start using http://remix.ethereum.org const workspace = pluginLoader.get() const engine = new Engine(appManager) engine.setPluginOption = ({ name, kind }) => { - if (kind === 'provider' || name === 'LearnEth') { - return {queueTimeout: 60000} - } + if (kind === 'provider') return {queueTimeout: 60000*4} + if (name === 'LearnEth') return {queueTimeout: 60000} return {queueTimeout: 10000} } await engine.onload()