Skip to content

Commit ec10ef9

Browse files
committed
fix constructor prize pool var name
1 parent 52f9aaf commit ec10ef9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/custom-vaults/examples/direct-contributor/DirectContributor.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ contract DirectContributor is TwabERC20, Claimable, Ownable2Step {
2828
address owner_,
2929
address[] memory initialMintRecipients_,
3030
uint256[] memory initialMintAmounts_
31-
) Claimable(prizePool_, claimer_) TwabERC20(shareName_, shareSymbol_, prizePool.twabController()) Ownable() {
31+
) Claimable(prizePool_, claimer_) TwabERC20(shareName_, shareSymbol_, prizePool_.twabController()) Ownable() {
3232
_transferOwnership(owner_);
3333
assert(initialMintRecipients_.length == initialMintAmounts_.length);
3434
for (uint256 i = 0; i < initialMintRecipients_.length; i++) {

0 commit comments

Comments
 (0)