From 74b57d14aed0b805fb85036978a63396f8a7b7b2 Mon Sep 17 00:00:00 2001 From: Hadrien Charlanes Date: Tue, 15 Jun 2021 14:16:41 +0200 Subject: [PATCH] fix: removed double emission of events for borrowCap and exposureCap --- contracts/protocol/lendingpool/LendingPoolConfigurator.sol | 1 - 1 file changed, 1 deletion(-) diff --git a/contracts/protocol/lendingpool/LendingPoolConfigurator.sol b/contracts/protocol/lendingpool/LendingPoolConfigurator.sol index 401ea9bc..0291ae4f 100644 --- a/contracts/protocol/lendingpool/LendingPoolConfigurator.sol +++ b/contracts/protocol/lendingpool/LendingPoolConfigurator.sol @@ -278,7 +278,6 @@ contract LendingPoolConfigurator is VersionedInitializable, ILendingPoolConfigur _pool.setConfiguration(asset, currentConfig.data); - emit BorrowCapChanged(asset, borrowCap); emit BorrowingEnabledOnReserve(asset, stableBorrowRateEnabled); }