Skip to content
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

Add ZEIP 35 #66

Merged
merged 1 commit into from
Nov 27, 2019
Merged

Add ZEIP 35 #66

merged 1 commit into from
Nov 27, 2019

Conversation

hysz
Copy link
Contributor

@hysz hysz commented Nov 1, 2019

Preamble

ZEIP: 35
Title: Permissive Order Cancellations
Author: 0x Core Team
Type: Standard Track
Category: Core
Status: Final
Created: 2019-10-29

Discussion: #35

Summary

The current batchCancelOrders function is difficult to use because the caller runs the risk of the entire transaction reverting if only a single cancellation fails. This is difficult to prevent because a cancellation may fail for non-deterministic reasons (such as the order being expired). This can be improved by doing a no-op instead of reverting for noncritical errors.

The proposed change would alter the logic of cancelOrder and batchCancelOrders, but would not affect the interface.

Motivation

This will improve the reliability of cancelling batches of specific orders.

Specification

The table below compares how failure scenarios are handled when cancelling an order.

Scenario Current Action Proposed Action
Reentrancy Revert Revert
Sender Not Authorized Revert Revert
Order Expired Revert No-op
Order Already Cancelled Revert No-op
Order Already Filled Revert No-op
Order Invalid Revert No-op

Copyright

Copyright and related rights waived via CC0.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants