Skip to content

Commit

Permalink
Fixup config overview
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Dudley <[email protected]>
  • Loading branch information
siladu committed Nov 2, 2023
1 parent 1fa94db commit d2be18d
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -296,15 +296,13 @@ public String build() {
lines.add("Experimental high spec configuration enabled");
}

lines.add("Using " + txPoolImplementation + " transaction pool implementation");
lines.add("Using " + worldStateUpdateMode + " worldstate update mode");

if (trieLogRetentionThreshold > 0) {
lines.add(
"Experimental trie log pruning enabled with retention threshold: "
+ trieLogRetentionThreshold
+ " blocks");
lines.add("Trie log pruning enabled:");
lines.add(" - retention threshold: " + trieLogRetentionThreshold + " blocks");
if (trieLogPruningLimit != null) {
lines.add("Experimental trie log pruning limit: " + trieLogPruningLimit + " blocks");
lines.add(" - prune limit: " + trieLogPruningLimit + " blocks");
}
}

Expand Down

0 comments on commit d2be18d

Please sign in to comment.