Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptoAtwill committed Jan 20, 2025
1 parent 4b9ae39 commit b3c1eee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/contracts/gateway/GatewayManagerFacet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ contract GatewayManagerFacet is GatewayActorModifiers, ReentrancyGuard {
}

/// @notice addStake - add collateral for an existing subnet
function addStake(uint256 amount) external nonReentrant payable {
function addStake(uint256 amount) external payable nonReentrant {
if (amount == 0) {
revert NotEnoughFunds();
}
Expand Down

0 comments on commit b3c1eee

Please sign in to comment.