Skip to content
This repository was archived by the owner on Sep 8, 2026. It is now read-only.

Commit 302c70b

Browse files
feat(validator-debt): add logline for skipped validators (#2316)
1 parent 8a933f6 commit 302c70b

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

crates/validator-debt/src/transaction.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,9 @@ impl Transaction {
282282
.iter()
283283
.any(|(key, epoch)| key == &node_id_str && *epoch == dz_epoch)
284284
{
285+
println!(
286+
"Validator {node_id_str} for epoch #{dz_epoch} excluded from debt collection"
287+
);
285288
continue;
286289
}
287290
let debt_proof = debt_clone.find_debt_proof(&d.node_id).unwrap();

0 commit comments

Comments
 (0)