2024-05-30 18:48:38 +01:00
|
|
|
* Check whether `HashKey` can be reduced to a simple 32 byte array (see
|
|
|
|
*desc_identifiers.nim*)
|
|
|
|
|
2024-06-07 10:56:31 +00:00
|
|
|
* Re-visit `delTree()`. Suggestion is deleting small trees on the memory later,
|
|
|
|
otherwise only deleting the root vertex (so it becomes inaccessible) and
|
|
|
|
remember the follow up vertices which can travel through the tx-layers
|
|
|
|
to be picked up by the backend store.
|
2024-07-01 10:59:18 +00:00
|
|
|
|
|
|
|
* Consider changing fetch/merge/delete prototypes for account and storage. At
|
|
|
|
the moment they all use `openArray[]` for strictly 32 byte arrays (which is
|
|
|
|
only implicitely enforced at run time -- i.e. it would fail otherwise.)
|
|
|
|
|
|
|
|
* Mental note: For *proof-mode* with pre-allocated locked vertices and Merkle
|
|
|
|
keys, verification of a patyion tree must be done by computing sub-tree keys
|
|
|
|
at the relative roots and comparing them with the pre-allocated Merkle keys.
|
|
|
|
|
|
|
|
* Remove legacy state format import from `deblobifyTo()` after a while (last
|
|
|
|
updated 28/06/24).
|