Minor fix

This commit is contained in:
Thrilok Kumar 2021-06-23 02:33:32 +05:30
parent 2126be64e2
commit 9fa32fb888

View File

@ -46,7 +46,9 @@ contract RefinanceResolver is CompoundHelpers, AaveV1Helpers, AaveV2Helpers {
* @notice Refinancing between AaveV1, AaveV2 and Compound
* @param data refinance data.
*/
function refinance(RefinanceData calldata data) external payable {
function refinance(RefinanceData calldata data)
external payable returns (string memory _eventName, bytes memory _eventParam)
{
require(data.source != data.target, "source-and-target-unequal");