-
Notifications
You must be signed in to change notification settings - Fork 8
Fix code review issues for redemptions #130
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
Conversation
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.
Pull request overview
This pull request addresses code review feedback for the redemptions feature by reorganizing import statements to follow a consistent ordering pattern and correcting event emissions in factory contracts.
Changes:
- Reorganized import statements across multiple files to place external library imports before internal imports
- Updated event emissions in factory contracts to include the caller address parameter
- Relocated function definitions within library files for better organization
Reviewed changes
Copilot reviewed 16 out of 16 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| script/UpgradeGnoNetwork.s.sol | Moved console import to follow standard import ordering |
| script/UpgradeEthNetwork.s.sol | Moved console import to follow standard import ordering |
| script/Network.sol | Reorganized imports to place external libraries before internal imports |
| contracts/vaults/gnosis/GnoPrivMetaVault.sol | Moved Initializable import to precede internal imports |
| contracts/vaults/gnosis/GnoPrivErc20Vault.sol | Fixed comment referencing wrong contract name (EthPrivMetaVault → GnoPrivErc20Vault) |
| contracts/vaults/gnosis/GnoMetaVaultFactory.sol | Added caller parameter to MetaVaultCreated event emission |
| contracts/vaults/gnosis/GnoMetaVault.sol | Reorganized imports with external libraries first |
| contracts/vaults/ethereum/EthPrivMetaVault.sol | Moved external library imports before internal imports |
| contracts/vaults/ethereum/EthMetaVaultFactory.sol | Added caller parameter to MetaVaultCreated event emission |
| contracts/vaults/ethereum/EthMetaVault.sol | Reorganized imports with external libraries first |
| contracts/tokens/OsTokenRedeemer.sol | Reorganized imports following standard ordering |
| contracts/tokens/GnoOsTokenRedeemer.sol | Moved external library imports before internal imports |
| contracts/tokens/EthOsTokenRedeemer.sol | Moved external library imports before internal imports |
| contracts/libraries/SubVaultUtils.sol | Relocated calculateSubVaultsRedemptions and _isSubVaultCollateralized functions |
| contracts/interfaces/IGnoMetaVaultFactory.sol | Updated event signature to include caller parameter |
| contracts/interfaces/IEthMetaVaultFactory.sol | Updated event signature to include caller parameter |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
Forge code coverage:
|
No description provided.