Consolidate all standalone utility scripts into contrib/scripts/: - Perl: avg_blocktime.pl, block_time.pl, gen-zaddrs.pl, sda_checkpoints.pl, sdl_checkpoints.pl, hush_block_subsidy_per_halving, hush_halvings, hush_scanner, hush_supply, hush_supply_old - Shell: fresh_clone_compile_and_run.sh, tidy_datadir.sh, dragonx_scanner - Python: convert_address.py - BAT: hush-uri.bat Update path references in contrib/README.md, doc/OLD_WALLETS.md, doc/relnotes/README.md, and sdl_checkpoints.pl.
18 lines
348 B
Perl
Executable File
18 lines
348 B
Perl
Executable File
#!/usr/bin/env perl
|
|
# Copyright 2019-2024 The Hush developers
|
|
# Released under the GPLv3
|
|
use warnings;
|
|
use strict;
|
|
|
|
my $hush = "./src/hush-cli";
|
|
my $znew = "$hush z_getnewaddress";
|
|
my $count = 1;
|
|
my $howmany = shift || 50;
|
|
|
|
while ($count < $howmany) {
|
|
my $zaddr = qx{$znew};
|
|
chomp($zaddr);
|
|
print qq{$zaddr\n};
|
|
$count++;
|
|
}
|