Skip to content

Commit 9d26452

Browse files
committed
fix: return empty canonical path when parent block header is missing
1 parent 3909ad5 commit 9d26452

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/slots_processor/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ impl SlotsProcessor<ReqwestTransport> {
384384
{
385385
Some(block) => block,
386386
None => {
387-
return Ok(canonical_execution_blocks);
387+
return Ok(vec![]);
388388
}
389389
};
390390

0 commit comments

Comments
 (0)