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
Make the Merkle construct work for both, Storage and State. This will require some amendments in the current way it works:
Make ICommit aware of the context it runs with. The Merkle should never know whether an account should be added to the key or not. Just make it work for a general Merkle tree with some keys added or deleted.
Introduce a split in Block so that Merkleization for Storage can be run first and for each account separately. Then for the State
Reconsider using RLP or make a change so that the Merkleization can be agnostic of what it merkleizes
Provide tests for the root
The text was updated successfully, but these errors were encountered:
Make the Merkle construct work for both,
Storage
andState
. This will require some amendments in the current way it works:ICommit
aware of the context it runs with. TheMerkle
should never know whether an account should be added to the key or not. Just make it work for a general Merkle tree with some keys added or deleted.Block
so that Merkleization forStorage
can be run first and for each account separately. Then for theState
The text was updated successfully, but these errors were encountered: