Break out of invalidation loop on Gloas block

This commit is contained in:
Michael Sproul
2026-04-02 13:55:29 +11:00
parent 85934b4d5f
commit 5284486af0

View File

@@ -960,7 +960,7 @@ impl ProtoArray {
// This block is pre-merge, therefore it has no execution status. Nor do its // This block is pre-merge, therefore it has no execution status. Nor do its
// ancestors. // ancestors.
Ok(ExecutionStatus::Irrelevant(_)) => break, Ok(ExecutionStatus::Irrelevant(_)) => break,
Err(_) => (), Err(_) => break,
} }
} }