Skip to content

Commit

Permalink
feat!: make reentracy status internal (#651)
Browse files Browse the repository at this point in the history
  • Loading branch information
skimaharvey authored Aug 4, 2023
1 parent 01fd820 commit f971b8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/LSP6KeyManager/LSP6KeyManagerCore.sol
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ abstract contract LSP6KeyManagerCore is

// Variables, methods and modifier used for ReentrancyGuard are taken from the link below and modified accordingly.
// https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v4.8/contracts/security/ReentrancyGuard.sol
bool private _reentrancyStatus;
bool internal _reentrancyStatus;

mapping(address => mapping(uint256 => uint256)) internal _nonceStore;

Expand Down

0 comments on commit f971b8c

Please sign in to comment.