Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion contracts/interfaces/V3SpokePoolInterface.sol
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,14 @@ interface V3SpokePoolInterface {
bytes depositorSignature
);

// Legacy struct only used to preserve the FilledV3Relay event definition.
struct LegacyV3RelayExecutionEventInfo {
address updatedRecipient;
bytes32 updatedMessageHash;
uint256 updatedOutputAmount;
FillType fillType;
}

event FilledV3Relay(
address inputToken,
address outputToken,
Expand All @@ -388,7 +396,7 @@ interface V3SpokePoolInterface {
address depositor,
address recipient,
bytes message,
V3RelayExecutionEventInfo relayExecutionInfo
LegacyV3RelayExecutionEventInfo relayExecutionInfo
);

event RequestedV3SlowFill(
Expand Down
Loading