Skip to content

Commit

Permalink
fix: forge format
Browse files Browse the repository at this point in the history
  • Loading branch information
Emmanuel Joseph (JET) committed Oct 8, 2024
1 parent f1eae50 commit 0d4956f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/MultiSigTransaction.sol
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ abstract contract MultiSigTransaction is MultiSigTimelock, IMultiSigTransaction
/**
* @inheritdoc IMultiSigTransaction
*/
function depositToken(address token, uint256 amount) external nonReentrant payable {
function depositToken(address token, uint256 amount) external payable nonReentrant {
uint256 allowance = IERC20(token).allowance(_msgSender(), address(this));

if (allowance < amount) {
Expand Down
2 changes: 1 addition & 1 deletion src/components/user/User.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {SafeMath} from '../../libraries/SafeMath.sol';
import {RoleType} from '../../utilities/VaultEnums.sol';
import {UserProfile} from '../../utilities/VaultStructs.sol';
import {AddressUtils} from '../../libraries/AddressUtils.sol';
import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
import '@openzeppelin/contracts/utils/ReentrancyGuard.sol';

/**
* @title User Contract
Expand Down

0 comments on commit 0d4956f

Please sign in to comment.