Skip to content

Commit dd88c3c

Browse files
authored
fix: update legacy FilledV3Relay event to match old event signature (#873)
* fix: update legacy event to match old event signature Signed-off-by: Matt Rice <matthewcrice32@gmail.com> * WIP Signed-off-by: Matt Rice <matthewcrice32@gmail.com> * WIP Signed-off-by: Matt Rice <matthewcrice32@gmail.com> --------- Signed-off-by: Matt Rice <matthewcrice32@gmail.com>
1 parent bd7fa38 commit dd88c3c

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

contracts/interfaces/V3SpokePoolInterface.sol

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,14 @@ interface V3SpokePoolInterface {
373373
bytes depositorSignature
374374
);
375375

376+
// Legacy struct only used to preserve the FilledV3Relay event definition.
377+
struct LegacyV3RelayExecutionEventInfo {
378+
address updatedRecipient;
379+
bytes updatedMessage;
380+
uint256 updatedOutputAmount;
381+
FillType fillType;
382+
}
383+
376384
event FilledV3Relay(
377385
address inputToken,
378386
address outputToken,
@@ -388,7 +396,7 @@ interface V3SpokePoolInterface {
388396
address depositor,
389397
address recipient,
390398
bytes message,
391-
V3RelayExecutionEventInfo relayExecutionInfo
399+
LegacyV3RelayExecutionEventInfo relayExecutionInfo
392400
);
393401

394402
event RequestedV3SlowFill(

0 commit comments

Comments
 (0)