|
|
|
@ -132,8 +132,8 @@ export class Web3VmProvider { |
|
|
|
|
// dumpStorage throws error as 'Missing Node in DB'
|
|
|
|
|
// This can be uncommented once that error is handled
|
|
|
|
|
// https://github.com/ethereum/remix-project/issues/1644
|
|
|
|
|
// const storage = await this.vm.stateManager.dumpStorage(data.to)
|
|
|
|
|
const storage = {} |
|
|
|
|
const storage = await this.vm.stateManager.dumpStorage(data.to) |
|
|
|
|
// const storage = {}
|
|
|
|
|
this.storageCache[this.processingHash][tx['to']] = storage |
|
|
|
|
this.lastProcessedStorageTxHash[tx['to']] = this.processingHash |
|
|
|
|
} catch (e) { |
|
|
|
@ -252,8 +252,8 @@ export class Web3VmProvider { |
|
|
|
|
// dumpStorage throws error as 'Missing Node in DB'
|
|
|
|
|
// This can be uncommented once that error is handled
|
|
|
|
|
// https://github.com/ethereum/remix-project/issues/1644
|
|
|
|
|
// const storage = await this.vm.stateManager.dumpStorage(account)
|
|
|
|
|
const storage = {} |
|
|
|
|
const storage = await this.vm.stateManager.dumpStorage(account) |
|
|
|
|
// const storage = {}
|
|
|
|
|
this.storageCache[this.processingHash][this.processingAddress] = storage |
|
|
|
|
this.lastProcessedStorageTxHash[this.processingAddress] = this.processingHash |
|
|
|
|
} catch (e) { |
|
|
|
|