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 committed Jun 10, 2024
1 parent 84156b3 commit 1fe84fa
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 1fe84fa

Please sign in to comment.