Skip to content
This repository was archived by the owner on Dec 18, 2025. It is now read-only.

Commit 18777e6

Browse files
committed
test: fix config
1 parent acf27c6 commit 18777e6

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

config/eth-mainnet/aave-v2/Config.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ contract Config is BaseConfig {
4949
ProxyAdmin public proxyAdmin = ProxyAdmin(0x99917ca0426fbC677e84f873Fb0b726Bb4799cD8);
5050

5151
TransparentUpgradeableProxy public lensProxy =
52-
TransparentUpgradeableProxy(payable(0x8706256509684E9cD93B7F19254775CE9324c226));
52+
TransparentUpgradeableProxy(payable(0x507fA343d0A90786d86C7cd885f5C49263A91FF4));
5353
TransparentUpgradeableProxy public morphoProxy =
5454
TransparentUpgradeableProxy(payable(0x777777c9898D384F785Ee44Acfe945efDFf5f3E0));
5555
TransparentUpgradeableProxy public rewardsManagerProxy;

test-foundry/prod/aave-v2/TestLens.t.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ contract TestBorrow is TestSetup {
1616
uint256 p2pBorrowIndexBefore,
1717
uint256 poolSupplyIndexBefore,
1818
uint256 poolBorrowIndexBefore
19-
) = lens.getIndexes(aStEth);
19+
) = lens.getIndexes(aDai);
2020

2121
vm.prank(proxyAdmin.owner());
2222
proxyAdmin.upgrade(lensProxy, address(lensImplV2));
@@ -26,7 +26,7 @@ contract TestBorrow is TestSetup {
2626
uint256 p2pBorrowIndexAfter,
2727
uint256 poolSupplyIndexAfter,
2828
uint256 poolBorrowIndexAfter
29-
) = lens.getIndexes(aStEth);
29+
) = lens.getIndexes(aDai);
3030

3131
assertEq(p2pSupplyIndexAfter, p2pSupplyIndexBefore);
3232
assertEq(p2pBorrowIndexAfter, p2pBorrowIndexBefore);

0 commit comments

Comments
 (0)