-
Notifications
You must be signed in to change notification settings - Fork 1
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
syncPricePerShare on Polygon #2
base: main
Are you sure you want to change the base?
Conversation
address public fxChild; | ||
address public fxRootTunnel; | ||
uint public pricePerShare; | ||
|
||
event PricePerShareUpdated(uint indexed pricePerShare); |
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.
These are being added to a proxy that already has been deployed. Please verify that adding variables at the end is safe.
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.
Adding vars at the end won't be an issue if this contract isn't used as a parent contract of another
address public fxChild; | ||
address public fxRootTunnel; | ||
uint public pricePerShare; | ||
|
||
event PricePerShareUpdated(uint indexed pricePerShare); |
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.
Adding vars at the end won't be an issue if this contract isn't used as a parent contract of another
No description provided.