Skip to content

Commit

Permalink
remove todo comments (#1796)
Browse files Browse the repository at this point in the history
  • Loading branch information
sparrowDom authored Aug 30, 2023
1 parent 852afa4 commit abf482f
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -327,8 +327,9 @@ contract BalancerMetaPoolStrategy is BaseAuraStrategy {
balancerVault.exitPool(
balancerPoolId,
address(this),
// TODO: this is incorrect and should be altered when/if we intend to support
// pools that deal with native ETH
/* Payable keyword is required because of the IBalancerVault interface even though
* this strategy shall never be receiving native ETH
*/
payable(address(this)),
request
);
Expand Down Expand Up @@ -425,8 +426,9 @@ contract BalancerMetaPoolStrategy is BaseAuraStrategy {
balancerVault.exitPool(
balancerPoolId,
address(this),
// TODO: this is incorrect and should be altered when/if we intend to support
// pools that deal with native ETH
/* Payable keyword is required because of the IBalancerVault interface even though
* this strategy shall never be receiving native ETH
*/
payable(address(this)),
request
);
Expand Down

0 comments on commit abf482f

Please sign in to comment.