Skip to content

Commit

Permalink
Fix on function called on initialize of stata
Browse files Browse the repository at this point in the history
  • Loading branch information
eboadom committed Aug 14, 2024
1 parent 4035b6f commit 425c7db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/periphery/contracts/static-a-token/StataTokenV2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ contract StataTokenV2 is
) external initializer {
__ERC20_init(staticATokenName, staticATokenSymbol);
__ERC20Permit_init(staticATokenName);
__ERC20AaveLM_init_unchained(aToken);
__ERC20AaveLM_init(aToken);
__ERC4626StataToken_init(aToken);
__Pausable_init();
}
Expand Down

0 comments on commit 425c7db

Please sign in to comment.