-
Notifications
You must be signed in to change notification settings - Fork 4
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
GHO CCIP 1.5 Token Pool #19
base: ccip-develop
Are you sure you want to change the base?
Conversation
|
|
||
/// @dev Constructor | ||
/// @param token The bridgeable token that is managed by this pool. | ||
/// @param rmnProxy The address of the arm proxy |
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.
Small nit: but now that it's called rmn
instead of arm
, perhaps we should change the second part of this comment to match
/// @param owner_ The address of the owner | ||
/// @param allowlist A set of addresses allowed to trigger lockOrBurn as original senders | ||
/// @param router The address of the router | ||
function initialize(address owner_, address[] memory allowlist, address router) public virtual initializer { |
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.
We don't usually like putting _
in function params, suggested to use owner
instead of owner_
. Also @param comment to match
/// @param router The address of the router | ||
/// @param bridgeLimit The maximum amount of tokens that can be bridged to other chains | ||
function initialize( | ||
address owner_, |
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.
Same as above comment on _
in variables
No description provided.