Skip to content

Commit

Permalink
fix: remove initial config of fee params in pool initialize function (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
sakulstra committed Jul 4, 2023
1 parent 493bb4d commit 3bb960b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions contracts/protocol/pool/Pool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,6 @@ contract Pool is VersionedInitializable, PoolStorage, IPool {
function initialize(IPoolAddressesProvider provider) external virtual initializer {
require(provider == ADDRESSES_PROVIDER, Errors.INVALID_ADDRESSES_PROVIDER);
_maxStableRateBorrowSizePercent = 0.25e4;
_flashLoanPremiumTotal = 0.0009e4;
_flashLoanPremiumToProtocol = 0;
}

/// @inheritdoc IPool
Expand Down

0 comments on commit 3bb960b

Please sign in to comment.