diff --git a/src/validation/validator.rs b/src/validation/validator.rs index 7060d8a8..0306cdcb 100644 --- a/src/validation/validator.rs +++ b/src/validation/validator.rs @@ -307,6 +307,9 @@ impl< } } for op in ops { + // We do not skip validating archive operations since after a re-org they may + // become valid and thus must be added to the contract state and validated + // beforehand. self.validate_operation(op); } }