Skip to content

Commit 3bb960b

Browse files
authored
fix: remove initial config of fee params in pool initialize function (#846)
1 parent 493bb4d commit 3bb960b

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

contracts/protocol/pool/Pool.sol

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,6 @@ contract Pool is VersionedInitializable, PoolStorage, IPool {
109109
function initialize(IPoolAddressesProvider provider) external virtual initializer {
110110
require(provider == ADDRESSES_PROVIDER, Errors.INVALID_ADDRESSES_PROVIDER);
111111
_maxStableRateBorrowSizePercent = 0.25e4;
112-
_flashLoanPremiumTotal = 0.0009e4;
113-
_flashLoanPremiumToProtocol = 0;
114112
}
115113

116114
/// @inheritdoc IPool

0 commit comments

Comments
 (0)