From f6c0398d5e82523c85c74a1a48c3177a9c2acab3 Mon Sep 17 00:00:00 2001 From: sujithsomraaj Date: Tue, 9 Jan 2024 19:32:33 +0530 Subject: [PATCH] fix: indexed in dynamic types --- src/interfaces/ICoreStateRegistry.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/interfaces/ICoreStateRegistry.sol b/src/interfaces/ICoreStateRegistry.sol index d9614a9d4..953130499 100644 --- a/src/interfaces/ICoreStateRegistry.sol +++ b/src/interfaces/ICoreStateRegistry.sol @@ -35,8 +35,8 @@ interface ICoreStateRegistry { /// @dev is emitted when a rescue is proposed for failed deposits in a payload event RescueProposed( uint256 indexed payloadId, - uint256[] indexed superformIds, - uint256[] indexed proposedAmount, + uint256[] superformIds, + uint256[] proposedAmount, uint256 proposedTime );