-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sender fixes #734
Sender fixes #734
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files
... and 1 file with indirect coverage changes
Flags with carried forward coverage won't be shown. Click here to find out more.
|
@@ -196,6 +196,17 @@ pub enum OpRejectionReason { | |||
FailedRevalidation { error: SimulationError }, | |||
/// Operation reverted during bundle formation simulation with message | |||
FailedInBundle { message: Arc<String> }, | |||
/// Operation's storage slot condition was not met | |||
ConditionNotMet(ConditionNotMetReason), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ConditionNotMet is a somewhat ambiguous enum name, maybe something like StorageConditionNotMet
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel like its descriptive enough since we have a "Conditional" sender, so this enum is coupled with that name
f01429f
to
e94744a
Compare
Combo of 3 PRs: #725 #722 #723