Skip to content

Commit

Permalink
Fix incorrect --dry-run message
Browse files Browse the repository at this point in the history
  • Loading branch information
nazar-pc committed Mar 24, 2024
1 parent 63f476a commit 8856d37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/subspace-farmer/src/single_disk_farm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1647,7 +1647,7 @@ impl SingleDiskFarm {
) -> Result<(), SingleDiskFarmScrubError> {
let span = Span::current();

if !dry_run {
if dry_run {
info!("Dry run is used, no changes will be written to disk");
}

Expand Down

0 comments on commit 8856d37

Please sign in to comment.