mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-30 03:01:58 -04:00
fix
This commit is contained in:
@@ -83,11 +83,13 @@ impl StorageWorkerJob {
|
||||
ParallelStateRootError::Other("Storage proof worker pool unavailable".to_string());
|
||||
|
||||
match self {
|
||||
Self::StorageProof { result_sender, .. } => result_sender.send(Err(error)),
|
||||
Self::StorageProof { result_sender, .. } => {
|
||||
result_sender.send(Err(error)).map_err(|_| ())
|
||||
}
|
||||
Self::BlindedStorageNode { result_sender, .. } => result_sender
|
||||
.send(Err(SparseTrieError::from(SparseTrieErrorKind::Other(Box::new(error))))),
|
||||
.send(Err(SparseTrieError::from(SparseTrieErrorKind::Other(Box::new(error)))))
|
||||
.map_err(|_| ()),
|
||||
}
|
||||
.map_err(|_| ())
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user