From 34902fee80a754db975861b07c593dcec3359b1b Mon Sep 17 00:00:00 2001 From: Vectorized Date: Fri, 5 Jan 2024 21:37:42 +0000 Subject: [PATCH] Edit Milady and README --- README.md | 1 + src/Milady.sol | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 5564b1335c..6826b95bb3 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,7 @@ utils ├─ LibMap — "Library for storage of packed unsigned integers" ├─ MinHeapLib — "Library for managing a min-heap in storage" ├─ RedBlackTreeLib — "Library for managing a red-black-tree in storage" +├─ ReentrancyGuard — "Reentrancy guard mixin" ├─ Multicallable — "Contract that enables a single call to call multiple methods on itself" ├─ GasBurnerLib — "Library for burning gas without reverting" ├─ SafeTransferLib — "Safe ERC20/ETH transfer lib that handles missing return values" diff --git a/src/Milady.sol b/src/Milady.sol index 1293d59911..782ee0f1c6 100644 --- a/src/Milady.sol +++ b/src/Milady.sol @@ -43,6 +43,7 @@ import "./utils/MetadataReaderLib.sol"; import "./utils/MinHeapLib.sol"; import "./utils/Multicallable.sol"; import "./utils/RedBlackTreeLib.sol"; +import "./utils/ReentrancyGuard.sol"; import "./utils/SSTORE2.sol"; import "./utils/SafeCastLib.sol"; import "./utils/SafeTransferLib.sol";