Skip to content

Commit

Permalink
change comment placement
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanBratanov committed Sep 24, 2023
1 parent 9cdfa7b commit 6b9e897
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ public class GenesisCommand {
public void generate(
@Mixin MockGenesisParams genesisParams, @Mixin MinimalEth2NetworkOptions networkOptions)
throws IOException {
// Output to stdout if no file is specified
final Spec spec = networkOptions.getSpec();
final boolean outputToFile =
genesisParams.outputFile != null && !genesisParams.outputFile.isBlank();
// Output to stdout if no file is specified
OutputStream fileStream = System.out;
try {
if (outputToFile) {
Expand Down

0 comments on commit 6b9e897

Please sign in to comment.