Skip to content

Commit d7a366b

Browse files
authored
Merge of #5287
2 parents b279b46 + 3df8b70 commit d7a366b

File tree

3 files changed

+0
-343
lines changed

3 files changed

+0
-343
lines changed

beacon_node/client/src/address_change_broadcast.rs

Lines changed: 0 additions & 322 deletions
This file was deleted.

beacon_node/client/src/builder.rs

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use crate::address_change_broadcast::broadcast_address_changes_at_capella;
21
use 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.

beacon_node/client/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
extern crate slog;
22

3-
mod address_change_broadcast;
43
mod compute_light_client_updates;
54
pub mod config;
65
mod metrics;

0 commit comments

Comments
 (0)