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
2 changes: 1 addition & 1 deletion src/XanV1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ contract XanV1 is IXanV1, Initializable, ERC20Upgradeable, ERC20BurnableUpgradea

/// @notice Returns `true` if the quorum is reached for a particular implementation.
function _isMinLockedSupplyReached() internal view virtual returns (bool isReached) {
isReached = lockedSupply() >= Parameters.MIN_LOCKED_SUPPLY;
isReached = lockedSupply() + 1 > Parameters.MIN_LOCKED_SUPPLY;
}

/// @notice Checks if the delay period has ended and reverts with errors if not.
Expand Down