Skip to content

Commit

Permalink
N-14 Incorrect Interface Implementation
Browse files Browse the repository at this point in the history
Signed-off-by: bennett <[email protected]>
  • Loading branch information
bmzig committed Nov 8, 2024
1 parent 813bf95 commit 88ae26a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/erc7683/ERC7683OrderDepositor.sol
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,18 @@ abstract contract ERC7683OrderDepositor is IOriginSettler {
* @dev This will pull in the user's funds and make the order available to be filled.
* @param order the ERC7683 compliant order.
* @param signature signature for the EIP-712 compliant order type.
* @param fillerData Across-specific fillerData.
* @param originFillerData Across-specific fillerData.
*/
function openFor(
GaslessCrossChainOrder calldata order,
bytes calldata signature,
bytes calldata fillerData
bytes calldata originFillerData
) external {
(
ResolvedCrossChainOrder memory resolvedOrder,
AcrossOrderData memory acrossOrderData,
AcrossOriginFillerData memory acrossOriginFillerData
) = _resolveFor(order, fillerData);
) = _resolveFor(order, originFillerData);

// Verify Permit2 signature and pull user funds into this contract
_processPermit2Order(order, acrossOrderData, signature);
Expand Down

0 comments on commit 88ae26a

Please sign in to comment.