-
Notifications
You must be signed in to change notification settings - Fork 504
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 compilation restrictions #402
Conversation
Co-authored-by: Louis Brown <[email protected]>
could be removed v4-periphery/test/shared/Planner.sol Line 6 in d1d087f
|
getting warnings on these:
|
Co-authored-by: Alice <[email protected]>
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.
looks pretty good to me; did NOT look at PositionDescriptor.t.sol btw 😅
src/interfaces/IPermit2Forwarder.sol
Outdated
|
||
import {IAllowanceTransfer} from "permit2/src/interfaces/IAllowanceTransfer.sol"; | ||
|
||
/// @notice Permit2Forwarder allows permitting this contract as a spender on permit2 |
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.
this is the exact same natspec as Permit2Forwarder. I feel like the top of interfaces should all be the same, maybe like how it is for IPositionManager.sol.
/// @title IPermit2Forwarder
/// @notice Interface for the Permit2Forwarder contract
and then we can follow this standard across all of our interfaces, and then the natspec at the top of the contracts could go in more detail?
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.
sure!
No description provided.