Delete unused incomplete_processing_components (#5418)

* Delete unused incomplete_processing_components

* lint
This commit is contained in:
Lion - dapplion
2024-03-23 09:00:35 +09:00
committed by GitHub
parent 332e1bb9e6
commit 306d3eb0eb
3 changed files with 12 additions and 46 deletions

View File

@@ -2891,7 +2891,7 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
}
self.data_availability_checker
.notify_gossip_blob(blob.slot(), block_root, &blob);
.notify_gossip_blob(block_root, &blob);
let r = self.check_gossip_blob_availability_and_import(blob).await;
self.remove_notified(&block_root, r)
}
@@ -2925,7 +2925,7 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
}
self.data_availability_checker
.notify_rpc_blobs(slot, block_root, &blobs);
.notify_rpc_blobs(block_root, &blobs);
let r = self
.check_rpc_blob_availability_and_import(slot, block_root, blobs)
.await;