fix plugin call 'setEnvironmentMode'

pull/5370/head
yann300 3 years ago committed by GitHub
parent 1a633bc377
commit 8e0c9a7d0e
  1. 2
      apps/remix-ide/src/app/tabs/hardhat-provider.js

@ -65,7 +65,7 @@ export default class HardhatProvider extends Plugin {
if (error) {
this.blocked = true
modalDialogCustom.alert('Hardhat Provider', `Error while connecting to the hardhat provider: ${error.message}`)
await this.call('udapp', 'setEnvironmentMode', 'vm')
await this.call('udapp', 'setEnvironmentMode', { context: 'vm', fork: 'berlin' })
this.provider = null
setTimeout(_ => { this.blocked = false }, 1000) // we wait 1 second for letting remix to switch to vm
return reject(error)

Loading…
Cancel
Save