storage as blank obj

pull/1738/head
Aniket-Engg 3 years ago committed by yann300
parent 76087ac8ea
commit ed7788b389
  1. 4
      libs/remix-lib/src/web3Provider/web3VmProvider.ts

@ -304,7 +304,9 @@ export class Web3VmProvider {
nextKey: null
})
}
cb(null, {})
// Before https://github.com/ethereum/remix-project/pull/1703, it used to throw error as
// 'unable to retrieve storage ' + txIndex + ' ' + address
cb(null, { storage: {}})
}
getBlockNumber (cb) { cb(null, 'vm provider') }

Loading…
Cancel
Save