Skip to content

Commit

Permalink
fix: update word spelling (#1133)
Browse files Browse the repository at this point in the history
  • Loading branch information
JulissaDantes authored Sep 18, 2024
1 parent c818071 commit 581ecda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/contracts/subnet/SubnetActorManagerFacet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ contract SubnetActorManagerFacet is SubnetActorModifiers, ReentrancyGuard, Pausa
/// @dev `leave` must be used to unstake the entire stake.
/// @param amount The amount to unstake.
function unstake(uint256 amount) external nonReentrant whenNotPaused notKilled {
// disbling validator changes for federated validation subnets (at least for now
// disabling validator changes for federated validation subnets (at least for now
// until a more complex mechanism is implemented).
LibSubnetActor.enforceCollateralValidation();

Expand All @@ -206,7 +206,7 @@ contract SubnetActorManagerFacet is SubnetActorModifiers, ReentrancyGuard, Pausa

/// @notice method that allows a validator to leave the subnet.
function leave() external nonReentrant whenNotPaused notKilled {
// disbling validator changes for federated subnets (at least for now
// disabling validator changes for federated subnets (at least for now
// until a more complex mechanism is implemented).
// This means that initial validators won't be able to recover
// their collateral ever (worth noting in the docs if this ends
Expand Down

0 comments on commit 581ecda

Please sign in to comment.