-
Notifications
You must be signed in to change notification settings - Fork 140
chore(lib/trie): add Deltas
in internal/trie/tracking
#2896
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
e0c6446
to
b72a7c6
Compare
80edf18
to
64e183d
Compare
b72a7c6
to
400a69e
Compare
64e183d
to
2389072
Compare
400a69e
to
2d2cf27
Compare
2389072
to
5b13219
Compare
105d1f7
to
ccb592a
Compare
4c54bd0
to
089fa9f
Compare
ccb592a
to
ce9ff3b
Compare
aebf0f1
to
4e60257
Compare
089fa9f
to
c0d828e
Compare
0d91179
to
c61ae90
Compare
c0d828e
to
699db96
Compare
qdm12
commented
Jan 11, 2023
jimjbrettj
reviewed
Jan 11, 2023
jimjbrettj
reviewed
Jan 11, 2023
jimjbrettj
approved these changes
Jan 11, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Feels like a really nice improvement, great work!
EclesioMeloJunior
requested changes
Jan 12, 2023
699db96
to
fe94fd7
Compare
fe94fd7
to
3a4c417
Compare
EclesioMeloJunior
approved these changes
Jan 18, 2023
3a4c417
to
364fbbe
Compare
🎉 This PR is included in version 0.8.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Changes
This is done following Tim's comment #2873 (comment)
and (performance) discoveries whilst working on #2881 - this unblocks #2881Deltas
struct ininternal/trie/tracking
(with unit tests)map[string]struct{}
by passingpendingDeltas DeltaRecorder
in the trie codeAllows for extending functionality, since it's very much needed in feat(lib/trie): cache inserted trie node Merkle values #2881Tests
go test -tags integration ./lib/trie/... ./internal/trie/tracking/...
Issues
Unblocks
#2854and #2838Primary Reviewer
@timwu20