refactor: dropping noteHashLeafIndexMap #19443
Open
+15
−123
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.

Tracking the note hash leaf indexes during execution is unnecessary because when building the kernel hints we are able to obtain the note hash membership witness directly by value instead of by index. I guess the API obtaining the witness by value might be a bit slower since we first need to find where in the tree the it is while index directly points into a tree. But even if this is the case it doesn't seem to be worth the complexity (if the slowness turns out to be a problem we can always store a map from note hash to index in the node given that the note hashes are unique).
Decided to do this when trying to tackle F-218.