diff --git a/packages/marketplace/contracts/exchange/OrderValidator.sol b/packages/marketplace/contracts/exchange/OrderValidator.sol index b6428028b3..dac90171d0 100644 --- a/packages/marketplace/contracts/exchange/OrderValidator.sol +++ b/packages/marketplace/contracts/exchange/OrderValidator.sol @@ -64,9 +64,11 @@ contract OrderValidator is IOrderValidator, Initializable, EIP712Upgradeable, Wh } bytes32 hash = LibOrder.hash(order); - - require(order.maker.isValidSignatureNow(_hashTypedDataV4(hash), signature), "order signature verification error"); - + + require( + order.maker.isValidSignatureNow(_hashTypedDataV4(hash), signature), + "order signature verification error" + ); } /// @notice if ERC20 token is accepted