-
Notifications
You must be signed in to change notification settings - Fork 53
Store hash(key) => value in the DB to reduce I/O operations for reads #14
Comments
This should probably be |
referencing #8 |
For now, SMT cannot be iterated (except iterating underlying map-store if possible, but it's a hack). |
Deduplication at the cost of having to reference count is probably not a good property to have. How many accounts are going to have exactly the same balance and nonce, etc. |
Traversing the tree to access the data, cryptographically ensures that value is actually present/absent in the tree. Accessing by key, means that you can't actually trust values from the tree (for example after Another issue is the lack of "history". In current implementation, you can use old root to access old value for a key. After optimization, only latest version of the value will be returned. Maybe we should use a bit more sophisticated form of mapping like: |
No description provided.
The text was updated successfully, but these errors were encountered: