From 9c018c37bb738c774c09d5d5bbd0c1d37507ff2a Mon Sep 17 00:00:00 2001 From: SevenSwen Date: Wed, 8 Feb 2023 13:47:46 +0700 Subject: [PATCH] fix lint --- contracts/mocks/RecursiveMatcher.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/mocks/RecursiveMatcher.sol b/contracts/mocks/RecursiveMatcher.sol index 8424f94a..a98ff0bb 100644 --- a/contracts/mocks/RecursiveMatcher.sol +++ b/contracts/mocks/RecursiveMatcher.sol @@ -73,7 +73,7 @@ contract RecursiveMatcher is IInteractionNotificationReceiver { // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory reason) = msg.sender.call( abi.encodePacked( - interactiveData[0] & _RFQ_FLAG != 0x0? + interactiveData[0] & _RFQ_FLAG != 0x0 ? IOrderRFQMixin.fillOrderRFQTo.selector : IOrderMixin.fillOrder.selector, interactiveData[1:]