storage as blank obj

pull/5370/head
Aniket-Engg 3 years ago committed by yann300
parent 0578fb0179
commit 4a633d2c51
  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