diff --git a/radix-engine/src/errors.rs b/radix-engine/src/errors.rs index 0743016ef3..118f483393 100644 --- a/radix-engine/src/errors.rs +++ b/radix-engine/src/errors.rs @@ -66,14 +66,17 @@ pub enum RejectionReason { valid_to_exclusive: Instant, current_time: Instant, }, - IntentHashPreviouslyCommitted(IntentHash), - IntentHashPreviouslyCancelled(IntentHash), + DeprecatedIntentHashPreviouslyCommitted, + DeprecatedIntentHashPreviouslyCancelled, BootloadingError(BootloadingError), ErrorBeforeLoanAndDeferredCostsRepaid(RuntimeError), SuccessButFeeLoanNotRepaid, SubintentsNotYetSupported, + + IntentHashPreviouslyCommitted(IntentHash), + IntentHashPreviouslyCancelled(IntentHash), } impl From for RejectionReason {