Fix mismatched response bug

This commit is contained in:
Emilia Hane 2023-01-23 13:23:04 +01:00
parent 81a754577d
commit e14550425d
No known key found for this signature in database
GPG Key ID: E73394F9C09206FA

View File

@ -351,7 +351,7 @@ impl<T: BeaconChainTypes> Worker<T> {
// send stream termination
if send_response {
self.send_response(peer_id, Response::BlocksByRoot(None), request_id);
self.send_response(peer_id, Response::BlobsByRoot(None), request_id);
}
drop(send_on_drop);
},