Skip to content
Snippets Groups Projects
Commit 2589951a authored by Robert Martin-Legene's avatar Robert Martin-Legene
Browse files

Fixed bug in walker.pl when called without a blocknumber.

parent 5ac915b6
No related branches found
No related tags found
No related merge requests found
......@@ -333,7 +333,7 @@ my $nonce_xlate = {
'0xffffffffffffffff' => 'SEALER_ADD',
};
while ( $ARGV[0] =~ m/^-/ )
while ( defined $ARGV[0] and $ARGV[0] =~ m/^-/ )
{
my $arg = shift;
$verbose = 1 if $arg eq '-v';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment