-
Notifications
You must be signed in to change notification settings - Fork 49
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
refactor(l1): cleanup the public api of rpc crate #2319
base: main
Are you sure you want to change the base?
Conversation
Lines of code reportTotal lines added: Detailed view
|
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.
Looking good, left just a question
pub storage: Store, | ||
pub blockchain: Arc<Blockchain>, | ||
pub jwt_secret: Bytes, | ||
pub local_p2p_node: Node, | ||
pub local_node_record: NodeRecord, | ||
pub active_filters: ActiveFilters, | ||
pub syncer: Arc<TokioMutex<SyncManager>>, | ||
#[cfg(feature = "based")] | ||
gateway_eth_client: EthClient, | ||
pub gateway_eth_client: EthClient, | ||
#[cfg(feature = "based")] | ||
gateway_auth_client: EngineClient, | ||
pub gateway_auth_client: EngineClient, | ||
#[cfg(feature = "based")] | ||
gateway_pubkey: Public, | ||
pub gateway_pubkey: Public, | ||
#[cfg(feature = "l2")] | ||
valid_delegation_addresses: Vec<Address>, | ||
pub valid_delegation_addresses: Vec<Address>, | ||
#[cfg(feature = "l2")] | ||
sponsor_pk: SecretKey, | ||
pub sponsor_pk: SecretKey, |
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.
Nit: What was the reason to make them public? I'm asumming is related to the changes in how other modules import now RpcApiContext but not entirely sure why, I may be missing something.
Motivation
Having a clean and explicit
lib.rs
that only exposes necesary functions to the outsideThe idea is for every crate:
Some crates from the workspace are already like this, others are in the process of being refactored.