Skip to content

Commit

Permalink
Fix read_test().
Browse files Browse the repository at this point in the history
  • Loading branch information
evoskuil committed Jan 3, 2025
1 parent 2483d0a commit 075943b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion console/executor_test_reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void executor::read_test(bool dump) const
while (!cancel_ && keys.size() < target_count)
{
const auto outputs = query_.get_outputs(tx++);
if (outputs->empty())
if (is_null(outputs))
{
// fault, tx with no outputs.
return;
Expand Down

0 comments on commit 075943b

Please sign in to comment.