Skip to content

Commit

Permalink
Add revert
Browse files Browse the repository at this point in the history
  • Loading branch information
makoto committed Feb 23, 2024
1 parent 5ea0cc9 commit b1ed3ef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion contracts/reverseRegistrar/SignatureReverseResolver.sol
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ contract SignatureReverseResolver is Ownable, ISignatureReverseResolver {
return lastUpdated[node];
}

function isAuthorised(address addr) internal view virtual returns (bool) {}
function isAuthorised(address addr) internal view virtual returns (bool) {
revert("This function needs to be overriten");
}

function isAuthorisedWithSignature(
bytes32 hash,
Expand Down

0 comments on commit b1ed3ef

Please sign in to comment.