Skip to content

Commit

Permalink
code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
usmansaleem committed Aug 29, 2023
1 parent ada286b commit 7152908
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,8 @@ void initWalletAndPasswordFiles() throws Exception {
final Path passwordFile =
passwordDir.resolve(fileName.substring(0, fileName.lastIndexOf(".json")) + ".txt");
Files.writeString(passwordFile, "test123");
}

// write files in wallet dir that will be ignored by bulk loading logic
for (int i = 0; i < 4; i++) {
// write files in wallet dir that will be ignored by bulk loading logic
Files.writeString(walletDir.resolve(i + ".txt"), "ignored");
}
}
Expand Down

0 comments on commit 7152908

Please sign in to comment.