Skip to content

Commit

Permalink
Merge pull request #1 from IndexCoop/update-oz
Browse files Browse the repository at this point in the history
  • Loading branch information
pblivin0x authored Jun 17, 2024
2 parents 8aeaa88 + 26a83b2 commit 75f6dd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/openzeppelin-contracts
3 changes: 1 addition & 2 deletions src/AuctionBot.sol
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ contract AuctionBot is Ownable {
bytes32 balancerPoolId;
}

constructor(address _auctionRebalanceModule) Ownable(msg.sender) {
constructor(address _auctionRebalanceModule) Ownable() {
auctionRebalanceModule = IAuctionRebalanceModule(_auctionRebalanceModule);
allowedCallers[msg.sender] = true;
}
Expand Down Expand Up @@ -262,4 +262,3 @@ contract AuctionBot is Ownable {
balancerVault.swap(singleSwap, fundManagement, type(uint256).max, type(uint256).max);
}
}

0 comments on commit 75f6dd6

Please sign in to comment.