Merge branch 'main' into script-updates

This commit is contained in:
0xPradyuman 2022-03-20 18:41:51 +05:30 committed by GitHub
commit 15d0d55bfa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View File

@ -143,7 +143,11 @@ contract _AaveV2ToV3MigrationResolver is _AaveHelper {
payable
returns (string memory _eventName, bytes memory _eventParam)
{
(_eventName, _eventParam) = _importAave(msg.sender, inputData, false);
(_eventName, _eventParam) = _importAave(
address(this),
inputData,
false
);
}
}

View File

@ -151,7 +151,11 @@ contract _AaveV2ToV3MigrationResolver is _AaveHelper {
payable
returns (string memory _eventName, bytes memory _eventParam)
{
(_eventName, _eventParam) = _importAave(msg.sender, inputData, false);
(_eventName, _eventParam) = _importAave(
address(this),
inputData,
false
);
}
}