We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bdb4fd commit 0b8365aCopy full SHA for 0b8365a
contracts/VanityURL.sol
@@ -215,7 +215,7 @@ contract VanityURL is Ownable,Pausable {
215
/*
216
function to transfer ownership for Vanity URL by Owner
217
*/
218
- function reserveVanityURLByOwner(address _to,string _vanity_url,bytes32 _data) whenNotPaused onlyOwner public {
+ function reserveVanityURLByOwner(address _to,string _vanity_url,string _data) whenNotPaused onlyOwner public {
219
_vanity_url = _toLower(_vanity_url);
220
require(checkForValidity(_vanity_url));
221
/* check if vanity url is being used by anyone */
0 commit comments