Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop address_change_broadcast #5287

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
322 changes: 0 additions & 322 deletions beacon_node/client/src/address_change_broadcast.rs

This file was deleted.

20 changes: 0 additions & 20 deletions beacon_node/client/src/builder.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use crate::address_change_broadcast::broadcast_address_changes_at_capella;
use crate::compute_light_client_updates::{
compute_light_client_updates, LIGHT_CLIENT_SERVER_CHANNEL_CAPACITY,
};
Expand Down Expand Up @@ -920,25 +919,6 @@ where
beacon_chain.slot_clock.clone(),
);
}

// Spawn a service to publish BLS to execution changes at the Capella fork.
if let Some(network_senders) = self.network_senders.clone() {
let inner_chain = beacon_chain.clone();
let broadcast_context =
runtime_context.service_context("addr_bcast".to_string());
let log = broadcast_context.log().clone();
broadcast_context.executor.spawn(
async move {
broadcast_address_changes_at_capella(
&inner_chain,
network_senders.network_send(),
&log,
)
.await
},
"addr_broadcast",
);
}
}

// Spawn service to publish light_client updates at some interval into the slot.
Expand Down
1 change: 0 additions & 1 deletion beacon_node/client/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
extern crate slog;

mod address_change_broadcast;
mod compute_light_client_updates;
pub mod config;
mod metrics;
Expand Down
Loading