From 784b98095906e2c131b0ee971071b5a9d8e7797d Mon Sep 17 00:00:00 2001 From: wangjingcun Date: Thu, 28 Nov 2024 14:17:23 +0800 Subject: [PATCH] chore: fix 404 status URL Signed-off-by: wangjingcun --- src/utils/ReentrancyGuard.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/ReentrancyGuard.sol b/src/utils/ReentrancyGuard.sol index 1453e24c..bcb9f7e7 100644 --- a/src/utils/ReentrancyGuard.sol +++ b/src/utils/ReentrancyGuard.sol @@ -3,7 +3,7 @@ pragma solidity >=0.8.0; /// @notice Gas optimized reentrancy protection for smart contracts. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/ReentrancyGuard.sol) -/// @author Modified from OpenZeppelin (https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/ReentrancyGuard.sol) +/// @author Modified from OpenZeppelin (https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/ReentrancyGuard.sol) abstract contract ReentrancyGuard { uint256 private locked = 1;