merge with unstable fixes

This commit is contained in:
realbigsean
2022-11-01 13:26:56 -04:00
parent 8656d23327
commit d8a49aad2b
5 changed files with 7 additions and 17 deletions

View File

@@ -706,6 +706,7 @@ impl<T: BeaconChainTypes> Worker<T> {
block_and_blob: Arc<SignedBeaconBlockAndBlobsSidecar<T::EthSpec>>,
seen_timestamp: Duration,
) {
//FIXME
unimplemented!()
}
@@ -2213,15 +2214,4 @@ impl<T: BeaconChainTypes> Worker<T> {
self.propagate_if_timely(is_timely, message_id, peer_id)
}
/// Handle an error whilst verifying a `SignedBlobsSidecar` from the network.
fn handle_blobs_verification_failure(
&self,
peer_id: PeerId,
message_id: MessageId,
reprocess_tx: Option<mpsc::Sender<ReprocessQueueMessage<T>>>,
error: BlobError,
seen_timestamp: Duration,
) {
}
}