pull/5370/head
Aniket-Engg 2 years ago
parent fc6bfda317
commit 9e1b0fce53
  1. 6
      apps/remix-ide/src/blockchain/providers/vm.js

@ -50,15 +50,15 @@ class VMProvider {
} else { } else {
reject(new Error(msg.data.error)) reject(new Error(msg.data.error))
} }
} } else if (msg.data.cmd === 'newAccountResult') {
} else if (msg.data.cmd === 'newAccountResult') {
if (this.newAccountCallback[msg.data.stamp]) { if (this.newAccountCallback[msg.data.stamp]) {
this.newAccountCallback[msg.data.stamp](msg.data.error, msg.data.result) this.newAccountCallback[msg.data.stamp](msg.data.error, msg.data.result)
delete this.newAccountCallback[msg.data.stamp] delete this.newAccountCallback[msg.data.stamp]
} }
} }
}) })
this.worker.postMessage({ cmd: 'init', fork: this.executionContext.getCurrentFork(), nodeUrl: provider?.options['nodeUrl'], blockNumber: provider?.options['blockNumber']}) this.worker.postMessage({ cmd: 'init', fork: this.executionContext.getCurrentFork(), nodeUrl: provider?.options['nodeUrl'], blockNumber: provider?.options['blockNumber']})
})
} }
// TODO: is still here because of the plugin API // TODO: is still here because of the plugin API

Loading…
Cancel
Save