Skip to content

Commit

Permalink
Fix check around blocks to skip parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
avazirna committed Jul 27, 2023
1 parent f84f11f commit 34ed460
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ private void parseBlock(String root, LinkedHashSet<TransactionParser> parsers) t
continue;
}

if (blocksToSkipParsing != null && blocksToSkipParsing.equals(name)) {
if (blocksToSkipParsing != null && blocksToSkipParsing.contains(name)) {
this.skipBlock(name);
continue;
}
Expand Down

0 comments on commit 34ed460

Please sign in to comment.