From 6b63ece64b409e067a9506a0e1afb01f3f7c422c Mon Sep 17 00:00:00 2001 From: t11s Date: Thu, 8 Feb 2024 17:38:27 -0800 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20pragma=20solidity=20>=3D0.?= =?UTF-8?q?8.24?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/TransientReentrancyGuard.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/TransientReentrancyGuard.sol b/src/utils/TransientReentrancyGuard.sol index 752141c0..f25766aa 100644 --- a/src/utils/TransientReentrancyGuard.sol +++ b/src/utils/TransientReentrancyGuard.sol @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -pragma solidity >=0.8.0; +pragma solidity >=0.8.24; /// @notice Gas optimized reentrancy protection for smart contracts. Leverages Cancun transient storage. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/TransientReentrancyGuard.sol)