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
In order to generate traces of the EVM, the arithmetization requires access to the accounts.
Current available method:
MutableAccount getAccount(Address address);
gives the required information, but the implementation in the abstractWolrdUpdated as a side effect adds it to the updatedAccounts list which ends in state modification later during the processing. To avoid this unwanted modification, we need a method returning the same information without the side effect.
Acceptance Criteria
new method available to get data without tracking the account.
The text was updated successfully, but these errors were encountered:
Description
In order to generate traces of the EVM, the arithmetization requires access to the accounts.
Current available method:
gives the required information, but the implementation in the abstractWolrdUpdated as a side effect adds it to the updatedAccounts list which ends in state modification later during the processing. To avoid this unwanted modification, we need a method returning the same information without the side effect.
Acceptance Criteria
The text was updated successfully, but these errors were encountered: