Merge pull request #899 from federicobond/default-vm

Default to JavaScript VM even with injected Web3
pull/1/head
yann300 7 years ago committed by GitHub
commit 3111895639
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/execution-context.js

@ -80,7 +80,7 @@ web3VM.setVM(vm)
function ExecutionContext () {
var self = this
this.event = new EventManager()
var executionContext = injectedProvider ? 'injected' : 'vm'
var executionContext = 'vm'
this.getProvider = function () {
return executionContext

Loading…
Cancel
Save