cargo fmt

This commit is contained in:
realbigsean
2023-07-14 17:29:41 -04:00
parent b19883e63b
commit e3ee0c6cce
17 changed files with 83 additions and 84 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) => {