Start wiring up beacon processor

This commit is contained in:
Paul Hauner
2023-07-03 17:00:24 +10:00
parent 238837bc91
commit e9112875ac
5 changed files with 31 additions and 1 deletions

View File

@@ -493,6 +493,7 @@ where
chain: None,
network_senders: None,
network_globals: None,
beacon_processor_send: None,
eth1_service: Some(genesis_service.eth1_service.clone()),
log: context.log().clone(),
sse_logging_components: runtime_context.sse_logging_components.clone(),
@@ -718,6 +719,7 @@ where
network_senders: self.network_senders.clone(),
network_globals: self.network_globals.clone(),
eth1_service: self.eth1_service.clone(),
beacon_processor_send: Some(self.beacon_processor_send.clone()),
sse_logging_components: runtime_context.sse_logging_components.clone(),
log: log.clone(),
});