-
Notifications
You must be signed in to change notification settings - Fork 2.4k
feat(trie): remove SerialSparseTrie
#21808
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
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
40203c0
feat(trie): remove `SerialSparseTrie`, make `ParallelSparseTrie` the …
DaniPopes 8829818
ParallelSparseTrie as default
DaniPopes 606c24f
chore: clippy
DaniPopes 601e02a
fix: restore private visibility for internal structs in state.rs
DaniPopes db8f876
fix: add missing alloc imports for no_std builds and remove unused de…
gakonst 12615e1
chore: revert benchmark changes
gakonst 460b212
fix: minimal changes for state.rs - use find_leaf instead of nodes_re…
DaniPopes 3188042
chore: remove sparse trie benchmarks
DaniPopes c32a94e
nit
DaniPopes ff70e17
Merge origin/main
DaniPopes 39aa733
chore: remove unused criterion dev-dependency
DaniPopes e9322fb
nits
DaniPopes e00e2d7
fix: test failure
DaniPopes 86959ae
fix(trie): Do not reveal disconnected leaves
mediocregopher 5d09f8e
Create eager-mules-fold.md
mediocregopher 1efaaa8
Tracing
mediocregopher afa3b6e
Reveal embedded children after inserting revealed branch
mediocregopher 2369311
also check that the leaf full key hasn't been set in values
mediocregopher fba782a
chore(trie): Spans and traces for sparse trie
mediocregopher 782cdd1
Merge branch 'mediocregopher/pst-reveal-leaf-fix' of github.com:parad…
mediocregopher e123377
Create evil-pigs-cry.md
mediocregopher e7c67cd
fix: drop span before processing account leaf updates
mediocregopher d1037fd
fix: revert ParallelSparseTrie changes and remove SerialSparseTrie test
mediocregopher e77eec4
Merge branch 'mediocregopher/sparse-trie-traces' of github.com:paradi…
mediocregopher 83cbdc4
Merge remote-tracking branch 'origin/main' into dani/nuke-serial-spar…
gakonst fa56e59
Merge remote-tracking branch 'origin/main' into dani/nuke-serial-spar…
mediocregopher 8d029af
Merge branch 'dani/nuke-serial-sparse-trie' of github.com:paradigmxyz…
mediocregopher 33f6321
fix: correct ChangedSubtrie import path in tests
mediocregopher 17f732a
chore: retrigger CI
mediocregopher d0f0ed1
Remove accidentally committed files
mediocregopher 5aea435
fix correctly_decodes_branch_node_values
mediocregopher d8c7c42
Merge origin/main: remove SerialSparseTrie, keep ParallelSparseTrie i…
mediocregopher 230cdde
chore: add changelog entry for SerialSparseTrie removal
mediocregopher File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| reth-trie-sparse: minor | ||
| --- | ||
|
|
||
| Removed `SerialSparseTrie` from the workspace, consolidating on `ParallelSparseTrie` as the single sparse trie implementation in `reth-trie-sparse`. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
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.
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.
maybe we dont actually need these anymore, but can keep for now