chg: indexed event param !review

This commit is contained in:
sanchaymittal 2023-05-04 15:44:53 +09:00
parent e4d21e37df
commit c2c087bbe4
No known key found for this signature in database
GPG Key ID: D794EEBC262F179E

View File

@ -22,7 +22,7 @@ contract InstadappTarget is IXReceiver, InstadappAdapter {
/// Events
/// @dev This event is emitted when the authCast function is called.
event AuthCast(bytes32 transferId, address dsaAddress, address auth, bool success, bytes returnedData);
event AuthCast(bytes32 indexed transferId, address indexed dsaAddress, bool indexed success, address auth, bytes returnedData);
/// Modifiers
/// @dev This modifier is used to ensure that only the Connext contract can call the function.
@ -88,7 +88,7 @@ contract InstadappTarget is IXReceiver, InstadappAdapter {
)
);
emit AuthCast(_transferId, dsaAddress, auth, success, returnedData);
emit AuthCast(_transferId, dsaAddress, success, auth, returnedData);
return returnedData;
}