diff --git a/nomos-services/cryptarchia-consensus/src/lib.rs b/nomos-services/cryptarchia-consensus/src/lib.rs index e3296418..9ea7c496 100644 --- a/nomos-services/cryptarchia-consensus/src/lib.rs +++ b/nomos-services/cryptarchia-consensus/src/lib.rs @@ -716,7 +716,8 @@ where cryptarchia = new_state; } - Err(Error::Consensus(cryptarchia_engine::Error::ParentMissing(parent))) => { + Err(Error::Ledger(cryptarchia_ledger::LedgerError::ParentNotFound(parent))) + | Err(Error::Consensus(cryptarchia_engine::Error::ParentMissing(parent))) => { tracing::debug!("missing parent {:?}", parent); // TODO: request parent block }