Skip to content

Commit

Permalink
feat(trie): retain branch nodes in sparse trie (paradigmxyz#12291)
Browse files Browse the repository at this point in the history
  • Loading branch information
shekhirin authored Nov 21, 2024
1 parent ac1867b commit 42aea7b
Show file tree
Hide file tree
Showing 4 changed files with 493 additions and 167 deletions.
8 changes: 5 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ tracy-client = "0.17.3"
#alloy-transport-ipc = { git = "https://github.com/alloy-rs/alloy", rev = "a971b3a" }
#alloy-transport-ws = { git = "https://github.com/alloy-rs/alloy", rev = "a971b3a" }

#op-alloy-consensus = { git = "https://github.com/alloy-rs/op-alloy", rev = "6a042e7681b1" }
#op-alloy-network = { git = "https://github.com/alloy-rs/op-alloy", rev = "6a042e7681b1" }
#op-alloy-rpc-types = { git = "https://github.com/alloy-rs/op-alloy", rev = "6a042e7681b1" }
#op-alloy-rpc-types-engine = { git = "https://github.com/alloy-rs/op-alloy", rev = "6a042e7681b1" }
#op-alloy-network = { git = "https://github.com/alloy-rs/op-alloy", rev = "6a042e7681b1" }
#op-alloy-consensus = { git = "https://github.com/alloy-rs/op-alloy", rev = "6a042e7681b1" }
2 changes: 2 additions & 0 deletions crates/trie/sparse/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ smallvec = { workspace = true, features = ["const_new"] }
thiserror.workspace = true

[dev-dependencies]
reth-primitives-traits = { workspace = true, features = ["arbitrary"] }
reth-testing-utils.workspace = true
reth-trie = { workspace = true, features = ["test-utils"] }
reth-trie-common = { workspace = true, features = ["test-utils", "arbitrary"] }
Expand All @@ -35,6 +36,7 @@ assert_matches.workspace = true
criterion.workspace = true
itertools.workspace = true
pretty_assertions = "1.4"
proptest-arbitrary-interop.workspace = true
proptest.workspace = true
rand.workspace = true

Expand Down
Loading

0 comments on commit 42aea7b

Please sign in to comment.