feat: remove default receipts for network components (#13371)

This commit is contained in:
Dan Cline
2024-12-12 18:44:55 -05:00
committed by GitHub
parent 1289a760a0
commit 02f76b813e
7 changed files with 25 additions and 31 deletions

View File

@ -225,7 +225,7 @@ pub enum PeerRequest<N: NetworkPrimitives = EthNetworkPrimitives> {
/// The request for receipts.
request: GetReceipts,
/// The channel to send the response for receipts.
response: oneshot::Sender<RequestResult<Receipts>>,
response: oneshot::Sender<RequestResult<Receipts<N::Receipt>>>,
},
}