mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-18 18:54:35 -05:00
chore: Bump revm to newest (#6357)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
@@ -295,12 +295,12 @@ where
|
||||
self.inner.task_spawner.spawn_blocking(Box::pin(async move {
|
||||
if count > MAX_PAYLOAD_BODIES_LIMIT {
|
||||
tx.send(Err(EngineApiError::PayloadRequestTooLarge { len: count })).ok();
|
||||
return
|
||||
return;
|
||||
}
|
||||
|
||||
if start == 0 || count == 0 {
|
||||
tx.send(Err(EngineApiError::InvalidBodiesRange { start, count })).ok();
|
||||
return
|
||||
return;
|
||||
}
|
||||
|
||||
let mut result = Vec::with_capacity(count as usize);
|
||||
@@ -324,7 +324,7 @@ where
|
||||
}
|
||||
Err(err) => {
|
||||
tx.send(Err(EngineApiError::Internal(Box::new(err)))).ok();
|
||||
return
|
||||
return;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user