You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is an array of addresses which are touched during a tx:
appended to in StateManager.putAccount
appended to in StateManager.putContractAccount
runCall.addTxValue
runCode clears it
runTx appends to it in two places
runTx iterates it and deletes touched, but empty accounts
This should be done in a much cleaner manner, perhaps with an event emitted from StateManager for touching an account and subscribing to that event in runTx.
The text was updated successfully, but these errors were encountered:
It is an array of addresses which are touched during a tx:
StateManager.putAccount
StateManager.putContractAccount
runCall.addTxValue
runCode
clears itrunTx
appends to it in two placesrunTx
iterates it and deletes touched, but empty accountsThis should be done in a much cleaner manner, perhaps with an event emitted from
StateManager
for touching an account and subscribing to that event inrunTx
.The text was updated successfully, but these errors were encountered: