fixed bug on V2 to v3 migration

This commit is contained in:
Thrilok Kumar 2022-03-16 19:55:47 +04:00
parent 8cf500a1fa
commit d78c59e7eb

View File

@ -98,6 +98,16 @@ contract _AaveHelper is Helper {
data.stableBorrowAmts = new uint256[](
inputData.borrowTokens.length
);
data.variableBorrowAmtsWithFee = new uint256[](
inputData.borrowTokens.length
);
data.stableBorrowAmtsWithFee = new uint256[](
inputData.borrowTokens.length
);
data.data.totalBorrowAmtsWithFee = new uint256[](
inputData.borrowTokens.length
);
data.totalBorrowAmts = new uint256[](inputData.borrowTokens.length);
for (uint256 i = 0; i < inputData.borrowTokens.length; i++) {
for (uint256 j = i; j < inputData.borrowTokens.length; j++) {