fix merge

This commit is contained in:
realbigsean
2023-07-14 16:15:28 -04:00
parent 42f54ee561
commit 405e95b0ce
10 changed files with 49 additions and 61 deletions

View File

@@ -209,18 +209,12 @@ impl<T: BeaconChainTypes> Router<T> {
.send_blocks_by_roots_request(peer_id, request_id, request),
),
Request::BlobsByRange(request) => self.handle_beacon_processor_send_result(
self.network_beacon_processor.send_blobs_by_range_request(
peer_id,
request_id,
request,
),
self.network_beacon_processor
.send_blobs_by_range_request(peer_id, request_id, request),
),
Request::BlobsByRoot(request) => self.handle_beacon_processor_send_result(
self.network_beacon_processor.send_blobs_by_roots_request(
peer_id,
request_id,
request,
),
self.network_beacon_processor
.send_blobs_by_roots_request(peer_id, request_id, request),
),
Request::LightClientBootstrap(request) => self.handle_beacon_processor_send_result(
self.network_beacon_processor
@@ -311,7 +305,7 @@ impl<T: BeaconChainTypes> Router<T> {
blob_index,
signed_blob,
timestamp_now(),
)
),
)
}
PubsubMessage::VoluntaryExit(exit) => {