-
Notifications
You must be signed in to change notification settings - Fork 3
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
Rename Governor OZ to OZ Governor #7
Conversation
lib/forge-proposal-simulator
Outdated
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.
is this up to date on the latest version?
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 currently on the docs branch as the name of GovernorOZProposal has been updated to OZGovernorProposal on FPS. Once docs PR gets merged there I will update this to the main branch. @ElliotFriedman
address token = addresses.getAddress("GOVERNOR_OZ_VAULT_TOKEN"); | ||
(uint256 amount, ) = governorOZVault.deposits(address(token), timelock); | ||
address timelock = addresses.getAddress("OZ_GOVERNOR_TIMELOCK"); | ||
Vault OZGovernorVault = Vault(addresses.getAddress("OZ_GOVERNOR_VAULT")); |
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.
naming: OZGovernorVault -> ozGovernorVault
|
||
string memory output = string(vm.ffi(inputs)); | ||
|
||
GovernorOZProposal governorOZproposal = GovernorOZProposal( | ||
OZGovernorProposal OZGovernorproposal = OZGovernorProposal( |
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.
camelcase variable name
Vault OZGovernorVault = Vault(addresses.getAddress("OZ_GOVERNOR_VAULT")); | ||
address OZGovernorTimelock = addresses.getAddress("OZ_GOVERNOR_TIMELOCK"); |
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.
camelcase
Proposal output for src/proposals/simple-vault-governor-oz/OZGovernorProposal_02.sol:
|
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.
LGTM!
No description provided.