File tree Expand file tree Collapse file tree 3 files changed +0
-343
lines changed Expand file tree Collapse file tree 3 files changed +0
-343
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- use crate :: address_change_broadcast:: broadcast_address_changes_at_capella;
21use crate :: compute_light_client_updates:: {
32 compute_light_client_updates, LIGHT_CLIENT_SERVER_CHANNEL_CAPACITY ,
43} ;
@@ -920,25 +919,6 @@ where
920919 beacon_chain. slot_clock . clone ( ) ,
921920 ) ;
922921 }
923-
924- // Spawn a service to publish BLS to execution changes at the Capella fork.
925- if let Some ( network_senders) = self . network_senders . clone ( ) {
926- let inner_chain = beacon_chain. clone ( ) ;
927- let broadcast_context =
928- runtime_context. service_context ( "addr_bcast" . to_string ( ) ) ;
929- let log = broadcast_context. log ( ) . clone ( ) ;
930- broadcast_context. executor . spawn (
931- async move {
932- broadcast_address_changes_at_capella (
933- & inner_chain,
934- network_senders. network_send ( ) ,
935- & log,
936- )
937- . await
938- } ,
939- "addr_broadcast" ,
940- ) ;
941- }
942922 }
943923
944924 // Spawn service to publish light_client updates at some interval into the slot.
Original file line number Diff line number Diff line change 11extern crate slog;
22
3- mod address_change_broadcast;
43mod compute_light_client_updates;
54pub mod config;
65mod metrics;
You can’t perform that action at this time.
0 commit comments