Skip to content

Commit 54e6793

Browse files
committed
fix: external
1 parent b0e9e51 commit 54e6793

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Orders.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ abstract contract OrderDestination {
4242
/// @param token - The address of the token to be transferred to the recipient.
4343
/// address(0) corresponds to native Ether.
4444
/// @param amount - The amount of the token to be transferred to the recipient.
45-
function fill(address recipient, address token, uint256 amount) public payable {
45+
function fill(address recipient, address token, uint256 amount) external payable {
4646
if (token == address(0)) {
4747
require(amount == msg.value);
4848
payable(recipient).transfer(msg.value);

0 commit comments

Comments
 (0)