Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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