-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Closed
Labels
C-debtA clean up/refactor of existing codeA clean up/refactor of existing codeD-good-first-issueNice and easy! A great choice to get startedNice and easy! A great choice to get startedM-prevent-stalePrevents old inactive issues/PRs from being closed due to inactivityPrevents old inactive issues/PRs from being closed due to inactivity
Description
The chainspec type bloats reth-primitives
reth/crates/primitives/src/chain/spec.rs
Lines 509 to 517 in cc4a418
| /// An Ethereum chain specification. | |
| /// | |
| /// A chain specification describes: | |
| /// | |
| /// - Meta-information about the chain (the chain ID) | |
| /// - The genesis block of the chain ([`Genesis`]) | |
| /// - What hardforks are activated, and under which conditions | |
| #[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq)] | |
| pub struct ChainSpec { |
the entire mod should be converted into its own crate
this type is used quite a lot, we can likely re-export this type from reth-provider or similar
Metadata
Metadata
Assignees
Labels
C-debtA clean up/refactor of existing codeA clean up/refactor of existing codeD-good-first-issueNice and easy! A great choice to get startedNice and easy! A great choice to get startedM-prevent-stalePrevents old inactive issues/PRs from being closed due to inactivityPrevents old inactive issues/PRs from being closed due to inactivity
Type
Projects
Status
Done