File tree Expand file tree Collapse file tree 4 files changed +24
-4
lines changed Expand file tree Collapse file tree 4 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 11* @ init4tech/engineering
2- .github /workflows @ rswanson
3- crates /zenith /abi @ anna-carroll
2+ .github /workflows @ rswanson
Original file line number Diff line number Diff line change @@ -15,6 +15,5 @@ reth-db.workspace = true
1515reth-node-api.workspace = true
1616reth-node-ethereum.workspace = true
1717reth-trie-db.workspace = true
18- reth-prune-types.workspace = true
1918
2019tokio.workspace = true
Original file line number Diff line number Diff line change 1+ # Signet Node Types
2+
3+ This crate provides parameterizations and conveneniences for the Signet node's
4+ use of reth's internal generics. E.g. [ ` NodePrimitives ` ] and [ ` NodeTypes ` ] .
5+
6+ It also provides a [ ` NodeTypesDbTrait ` ] to aggregate several trait constraints
7+ on the database type. This is then used in the node and in ` signet-db ` .
8+
9+ This crate is mostly shims. It is not intended to be used outside of the
10+ Signet node and ` signet-db ` crates.
Original file line number Diff line number Diff line change 1- //! Types used by the signet node
1+ #![ doc = include_str ! ( "../README.md" ) ]
2+ #![ warn(
3+ missing_copy_implementations,
4+ missing_debug_implementations,
5+ missing_docs,
6+ unreachable_pub,
7+ clippy:: missing_const_for_fn,
8+ rustdoc:: all
9+ ) ]
10+ #![ cfg_attr( not( test) , warn( unused_crate_dependencies) ) ]
11+ #![ deny( unused_must_use, rust_2018_idioms) ]
12+ #![ cfg_attr( docsrs, feature( doc_cfg, doc_auto_cfg) ) ]
13+
214use reth:: {
315 primitives:: EthPrimitives ,
416 providers:: {
You can’t perform that action at this time.
0 commit comments