Skip to content

Commit

Permalink
init reentrancy guard (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
iethena authored Nov 16, 2024
1 parent 9fcc6da commit a9f5015
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/ustb/UStbMinting.sol
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ contract UStbMinting is IUStbMinting, SingleAdminAccessControl, ReentrancyGuard
GlobalConfig memory _globalConfig,
address[] memory _custodians,
address _admin
) {
) ReentrancyGuard() {
if (_tokenConfig.length == 0) revert NoAssetsProvided();
if (_assets.length == 0) revert NoAssetsProvided();
if (_admin == address(0)) revert InvalidZeroAddress();
Expand Down

0 comments on commit a9f5015

Please sign in to comment.