Skip to content

Commit

Permalink
Merge pull request #8 from 0xPolygonZero/debug_tools_stats
Browse files Browse the repository at this point in the history
Added tooling for trie stats
  • Loading branch information
BGluth authored Feb 8, 2024
2 parents ce863e5 + 2657f48 commit 731a095
Show file tree
Hide file tree
Showing 9 changed files with 502 additions and 72 deletions.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ keccak-hash = "0.10.0"
parking_lot = { version = "0.12.1", features = ["serde"] }
thiserror = "1.0.40"
log = "0.4.17"
num = { version = "0.4.1", optional = true }
num-traits = "0.2.15"
uint = "0.9.5"
rlp = "0.5.2"
Expand All @@ -39,7 +40,7 @@ serde_json = "1.0.96"

[features]
default = ["trie_debug"]
trie_debug = []
trie_debug = ["num"]

[lib]
doc-scrape-examples = true
Expand Down
1 change: 1 addition & 0 deletions src/debug_tools/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
pub mod common;
pub mod diff;
pub mod query;
pub mod stats;
Loading

0 comments on commit 731a095

Please sign in to comment.