Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion contracts/SpokePool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -1262,7 +1262,7 @@ abstract contract SpokePool is
* @param l2TokenAddress Address of the L2 token to claim refunds for.
* @param refundAddress Address to send the refund to.
*/
function claimRelayerRefund(bytes32 l2TokenAddress, bytes32 refundAddress) public {
function claimRelayerRefund(bytes32 l2TokenAddress, bytes32 refundAddress) external {
uint256 refund = relayerRefund[l2TokenAddress.toAddress()][msg.sender];
if (refund == 0) revert NoRelayerRefundToClaim();
relayerRefund[l2TokenAddress.toAddress()][refundAddress.toAddress()] = 0;
Expand Down
2 changes: 2 additions & 0 deletions contracts/interfaces/V3SpokePoolInterface.sol
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,8 @@ interface V3SpokePoolInterface {
bytes32[] calldata proof
) external;

function claimRelayerRefund(bytes32 l2TokenAddress, bytes32 refundAddress) external;

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