chore: propagate network primitives generic to EthStream usages (#13117)

This commit is contained in:
Dan Cline
2024-12-03 17:06:42 -05:00
committed by GitHub
parent bdfbcab531
commit c6add45c0d
2 changed files with 3 additions and 3 deletions

View File

@ -839,7 +839,7 @@ mod tests {
f: F,
) -> Pin<Box<dyn Future<Output = ()> + Send>>
where
F: FnOnce(EthStream<P2PStream<ECIESStream<TcpStream>>>) -> O + Send + 'static,
F: FnOnce(EthStream<P2PStream<ECIESStream<TcpStream>>, N>) -> O + Send + 'static,
O: Future<Output = ()> + Send + Sync,
{
let status = self.status;