From 73031aeb82ce544a5d7ec6b5f63839bb9a5393c4 Mon Sep 17 00:00:00 2001 From: JaredBorders Date: Tue, 7 Nov 2023 14:07:43 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=8E=20Add=20auditor=20tag?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Engine.sol | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Engine.sol b/src/Engine.sol index 8c54228f..573543ae 100644 --- a/src/Engine.sol +++ b/src/Engine.sol @@ -17,6 +17,8 @@ import {SignatureCheckerLib} from "src/libraries/SignatureCheckerLib.sol"; /// @title Kwenta Smart Margin v3: Engine contract /// @notice Responsible for interacting with Synthetix v3 perps markets /// @author JaredBorders (jaredborders@pm.me) +/// @custom:auditor this contract does not prevent reentrancy. +/// Please review the contract carefully. contract Engine is IEngine, EIP712, EIP7412, ERC2771Context { using MathLib for int128; using MathLib for int256;