From 1802080cabe8ec03010f899bd53fececbee88491 Mon Sep 17 00:00:00 2001 From: Mac L Date: Thu, 1 Feb 2024 17:10:25 +1100 Subject: [PATCH] Remove unnecessary pubs --- validator_client/src/block_service.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/validator_client/src/block_service.rs b/validator_client/src/block_service.rs index 2150b2417f..51f0d94989 100644 --- a/validator_client/src/block_service.rs +++ b/validator_client/src/block_service.rs @@ -53,8 +53,8 @@ impl From> for BlockError { pub struct BlockServiceBuilder { validator_store: Option>>, slot_clock: Option>, - pub beacon_nodes: Option>>, - pub proposer_nodes: Option>>, + beacon_nodes: Option>>, + proposer_nodes: Option>>, context: Option>, graffiti: Option, graffiti_file: Option, @@ -186,8 +186,8 @@ impl ProposerFallback { pub struct Inner { validator_store: Arc>, slot_clock: Arc, - pub beacon_nodes: Arc>, - pub proposer_nodes: Option>>, + pub(crate) beacon_nodes: Arc>, + pub(crate) proposer_nodes: Option>>, context: RuntimeContext, graffiti: Option, graffiti_file: Option,