natspec fix

This commit is contained in:
Ricardo Guilherme Schmidt 2018-05-15 19:37:45 -03:00 committed by Barry Gitarts
parent c7bde0bfde
commit db2d429674
1 changed files with 3 additions and 2 deletions

View File

@ -202,13 +202,14 @@ contract ENSSubdomainRegistry is Controlled {
/**
* @notice updates backup owner useful in case of opt-out domain move to new registry.
* @param _subdomainHash hash of the subdomain regarding this
* @param _userHash `msg.sender` owned subdomain hash
* @param _domainHash choosen contract owned domain hash
**/
function updateBackupOwner(
bytes32 _userHash,
bytes32 _domainHash
)
external
external
{
bytes32 subdomainHash = keccak256(_domainHash, _userHash);
require(accounts[subdomainHash].creationTime > 0);