Skip to content

Commit

Permalink
fix(auditor): improve tracking coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
maqi authored and joshuef committed Jun 12, 2024
1 parent 5d45529 commit 91faaa7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sn_client/src/audit/dag_crawling.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,9 @@ impl Client {
let _ = failed_utxos.insert(address, Instant::now() + reattempt_interval);
}
InternalGetNetworkSpend::Error(e) => {
warn!("Got a fetching error {e:?}");
warn!("Fetching spend {address:?} result in error {e:?}");
// Error of `NotEnoughCopies` could be re-attempted and succeed eventually.
let _ = failed_utxos.insert(address, Instant::now() + reattempt_interval);
}
}
}
Expand Down

0 comments on commit 91faaa7

Please sign in to comment.