Skip to content

Commit

Permalink
Update BaseRegistrarImplementation.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
h1utt committed Jan 25, 2024
1 parent 02c9e6b commit 8974fd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/ethregistrar/BaseRegistrarImplementation.sol
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ contract BaseRegistrarImplementation is ERC721, IBaseRegistrar, Ownable {
return expiries[id];
}

// Returns true iff the specified name is available for registration.
// Returns true if the specified name is available for registration.
function available(uint256 id) public view override returns (bool) {
// Not available if it's registered here or in its grace period.
return expiries[id] + GRACE_PERIOD < block.timestamp;
Expand Down

1 comment on commit 8974fd6

@124maa
Copy link

@124maa 124maa commented on 8974fd6 Jan 25, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

contracts/ethregistrar/BaseRegistrarImplementation.sol

Please sign in to comment.