Cosmetic changes

This commit is contained in:
Lennart Hansen 2022-04-21 03:54:56 +01:00
parent b1ea9ab418
commit cff404e702
2 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@ Name: (Hansen33) is taken by this address (dero1qy3dspltmkakl4gzpfvhc35kxxqpp2yp
$ ./dero_ns_cli.pl --name KingZulo $ ./dero_ns_cli.pl --name KingZulo
Dero Name Service Cli Tool - register name to wallet Dero Name Service Cli Tool - register name to wallet
Name: (KingZulo) is FREE to register Name: (KingZulo) is AVAILABLE to register
``` ```
@ -41,7 +41,7 @@ Name: (Hansen33) is taken by this address (dero1qy3dspltmkakl4gzpfvhc35kxxqpp2yp
``` ```
$ ./dero_ns_cli.pl --name KingZulo --register $ ./dero_ns_cli.pl --name KingZulo --register
Dero Name Service Cli Tool - register name to wallet Dero Name Service Cli Tool - register name to wallet
Name: (KingZulo) is FREE - and will be registered in a little while Name: (KingZulo) is AVAILABLE - and will be registered in a little while
Checking wallet RPC (127.0.0.1:10103) Checking wallet RPC (127.0.0.1:10103)
Wallet connected (127.0.0.1:10103) Wallet connected (127.0.0.1:10103)
Name: (KingZulo) registered on the DERO Stargate with TX ID (5f0abf21b897dc432a52633cdcbb47d68fde749a18b58764f39a696bd6eabb88) Name: (KingZulo) registered on the DERO Stargate with TX ID (5f0abf21b897dc432a52633cdcbb47d68fde749a18b58764f39a696bd6eabb88)

View File

@ -86,9 +86,9 @@ foreach my $check_name (@check_list) {
printf "Name: (%s) is taken by this address (%s)\n", $check->{'name'}, $check->{'address'}; printf "Name: (%s) is taken by this address (%s)\n", $check->{'name'}, $check->{'address'};
} else { } else {
if ($options{'register'}) { if ($options{'register'}) {
printf "Name: (%s) is FREE - and will be registered in a little while\n", $name; printf "Name: (%s) is AVAILABLE - and will be registered in a little while\n", $name;
} else { } else {
printf "Name: (%s) is FREE to register\n", $name; printf "Name: (%s) is AVAILABLE to register\n", $name;
} }
} }
} }