Skip to content
Merged
Changes from all 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
4 changes: 4 additions & 0 deletions contracts/SpokePool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,9 @@ abstract contract SpokePool is
event PausedFills(bool isPaused);
event SetOFTMessenger(address indexed token, address indexed messenger);

/// @notice Emitted when the call to external contract is executed, triggered by an admin action
event AdminExternalCallExecuted(address indexed target, bytes data);

error OFTTokenMismatch();
/// @notice Thrown when the native fee sent by the caller is insufficient to cover the OFT transfer.
error OFTFeeUnderpaid();
Expand Down Expand Up @@ -388,6 +391,7 @@ abstract contract SpokePool is
(success, returnData) = target.call(data);

if (!success) revert ExternalCallExecutionFailed();
emit AdminExternalCallExecuted(target, data);
}

/**************************************
Expand Down
Loading