From cff404e70279cf67e3d44685af06213546a6d2f7 Mon Sep 17 00:00:00 2001 From: Lennart Hansen Date: Thu, 21 Apr 2022 03:54:56 +0100 Subject: [PATCH] Cosmetic changes --- README.md | 4 ++-- dero_ns_cli.pl | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c2b093b..cd41da7 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Name: (Hansen33) is taken by this address (dero1qy3dspltmkakl4gzpfvhc35kxxqpp2yp $ ./dero_ns_cli.pl --name KingZulo 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 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) Wallet connected (127.0.0.1:10103) Name: (KingZulo) registered on the DERO Stargate with TX ID (5f0abf21b897dc432a52633cdcbb47d68fde749a18b58764f39a696bd6eabb88) diff --git a/dero_ns_cli.pl b/dero_ns_cli.pl index c8fc7a0..d7b9db5 100755 --- a/dero_ns_cli.pl +++ b/dero_ns_cli.pl @@ -86,9 +86,9 @@ foreach my $check_name (@check_list) { printf "Name: (%s) is taken by this address (%s)\n", $check->{'name'}, $check->{'address'}; } else { 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 { - printf "Name: (%s) is FREE to register\n", $name; + printf "Name: (%s) is AVAILABLE to register\n", $name; } } }