ReentrancyGuardUpgradeable

Git Source

Inherits: VersionedInitializable

State Variables

NOT_ENTERED

uint256 private constant NOT_ENTERED = 1;

ENTERED

uint256 private constant ENTERED = 2;

ReentrancyGuardStorageLocation

bytes32 private constant ReentrancyGuardStorageLocation =
    0x9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00;

Functions

_getReentrancyGuardStorage

function _getReentrancyGuardStorage() private pure returns (ReentrancyGuardStorage storage $);

__ReentrancyGuard_init

function __ReentrancyGuard_init() internal onlyInitializing;

nonReentrant

modifier nonReentrant();

Structs

ReentrancyGuardStorage

struct ReentrancyGuardStorage {
    uint256 _status;
}

Last updated