Skip to content

Commit

Permalink
Merge pull request #765 from bosonprotocol/missing-reentrancy-modifier
Browse files Browse the repository at this point in the history
Add the missing reentrancy guard
  • Loading branch information
mischat committed Aug 28, 2023
2 parents a79e24c + 2de357d commit 621b124
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/protocol/facets/MetaTransactionsHandlerFacet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ contract MetaTransactionsHandlerFacet is IBosonMetaTransactionsHandler, Protocol
function setAllowlistedFunctions(
bytes32[] calldata _functionNameHashes,
bool _isAllowlisted
) public override onlyRole(ADMIN) {
) public override onlyRole(ADMIN) nonReentrant {
setAllowlistedFunctionsInternal(_functionNameHashes, _isAllowlisted);
}

Expand Down

0 comments on commit 621b124

Please sign in to comment.