Check if hush-cli binary exists before using it

This commit is contained in:
Duke Leto
2022-09-15 19:41:28 -04:00
parent b07f9db06d
commit 2ddf539185

View File

@@ -8,6 +8,9 @@ use strict;
# Given a block time, estimate when it will happen
my $block = shift || die "Usage: $0 123";
my $hush = "./src/hush-cli";
unless (-e $hush) {
die "$hush does not exist, aborting";
}
my $blockcount = qx{$hush getblockcount};
unless ($blockcount = int($blockcount)) {