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;
2
1
use crate :: compute_light_client_updates:: {
3
2
compute_light_client_updates, LIGHT_CLIENT_SERVER_CHANNEL_CAPACITY ,
4
3
} ;
@@ -920,25 +919,6 @@ where
920
919
beacon_chain. slot_clock . clone ( ) ,
921
920
) ;
922
921
}
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
- }
942
922
}
943
923
944
924
// Spawn service to publish light_client updates at some interval into the slot.
Original file line number Diff line number Diff line change 1
1
extern crate slog;
2
2
3
- mod address_change_broadcast;
4
3
mod compute_light_client_updates;
5
4
pub mod config;
6
5
mod metrics;
You can’t perform that action at this time.
0 commit comments