Merge branch 'master' into feat/access-manager

This commit is contained in:
Hadrien Croubois
2023-09-04 15:55:53 +02:00
37 changed files with 450 additions and 121 deletions

View File

@ -2,7 +2,7 @@
pragma solidity ^0.8.20;
import {Pausable} from "../security/Pausable.sol";
import {Pausable} from "../utils/Pausable.sol";
contract PausableMock is Pausable {
bool public drasticMeasureTaken;

View File

@ -2,7 +2,7 @@
pragma solidity ^0.8.20;
import {ReentrancyGuard} from "../security/ReentrancyGuard.sol";
import {ReentrancyGuard} from "../utils/ReentrancyGuard.sol";
import {ReentrancyAttack} from "./ReentrancyAttack.sol";
contract ReentrancyMock is ReentrancyGuard {