Open shreyan-gupta opened 1 day ago
Attention: Patch coverage is 93.54839%
with 4 lines
in your changes missing coverage. Please review.
Project coverage is 69.85%. Comparing base (
9e4933b
) to head (e8ee3b4
). Report is 1 commits behind head on master.
Files with missing lines | Patch % | Lines |
---|---|---|
core/store/src/trie/mod.rs | 66.66% | 3 Missing :warning: |
core/store/src/trie/ops/interface.rs | 92.30% | 1 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
🚨 Try these New Features:
This PR introduces the GenericTrieNode which is a generalization on top of GenericUpdatedTrieNode where the nodes need not be an update type node.
This is useful in scenarios where we are not dealing with just updates, for example generalizing iterators over tries etc.
Along with this change this PR renames
GenericUpdatedNodeId
toUpdatedNodeId
which is more appropriate as for both memtries and store tries we have UpdatedNodeId as usize.