do not throw error if storage is not available

pull/5370/head
Aniket-Engg 3 years ago committed by yann300
parent a6d7203628
commit 0578fb0179
  1. 2
      libs/remix-lib/src/web3Provider/web3VmProvider.ts

@ -304,7 +304,7 @@ export class Web3VmProvider {
nextKey: null
})
}
cb('unable to retrieve storage ' + txIndex + ' ' + address)
cb(null, {})
}
getBlockNumber (cb) { cb(null, 'vm provider') }

Loading…
Cancel
Save