Skip to content

Commit 97b7169

Browse files
committed
remove fillerData input
1 parent 9926be6 commit 97b7169

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/allocators/ERC7683Allocator.sol

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,9 @@ contract ERC7683Allocator is OnChainAllocator, IERC7683Allocator {
4141
constructor(address compactContract_) OnChainAllocator(compactContract_) {}
4242

4343
/// @inheritdoc IOriginSettler
44-
function openFor(
45-
GaslessCrossChainOrder calldata order_,
46-
bytes calldata sponsorSignature_,
47-
bytes calldata fillerData
48-
) external {
44+
function openFor(GaslessCrossChainOrder calldata order_, bytes calldata sponsorSignature_, bytes calldata)
45+
external
46+
{
4947
// Check if orderDataType is the one expected by the allocator
5048
if (order_.orderDataType != ORDERDATA_GASLESS_TYPEHASH) {
5149
revert InvalidOrderDataType(order_.orderDataType, ORDERDATA_GASLESS_TYPEHASH);

0 commit comments

Comments
 (0)