-
Notifications
You must be signed in to change notification settings - Fork 13
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
Fix/skipRevert-documentation-issue-19 #319
Conversation
@@ -15,7 +15,7 @@ import {BaseBundler} from "./BaseBundler.sol"; | |||
abstract contract UrdBundler is BaseBundler { | |||
/// @notice Claims `amount` of `reward` on behalf of `account` on the given rewards distributor, using `proof`. | |||
/// @dev Assumes the given distributor implements IUniversalRewardsDistributor. | |||
/// @dev Pass `skipRevert = true` to avoid reverting the whole bundle in case the proof expired. | |||
/// @dev Pass `skipRevert = true` to avoid reverting the call in case the proof expired or frontrunned. |
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.
/// @dev Pass `skipRevert = true` to avoid reverting the call in case the proof expired or frontrunned. | |
/// @dev Pass `skipRevert = true` to avoid reverting the call in case the proof is frontrunned. |
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.
expired is important I think too
I think this PR should be done on top of the fix of https://github.com/cantinasec/review-morpho-blue-1/issues/28, or the opposite. How do you plan to do it @Jean-Grimal ? |
Yes you are right, I am working on the fix of this issue right now, I'll handle it |
Moved to #302 |
Fixes https://github.com/cantinasec/review-morpho-blue-1/issues/19