Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Additional tracing in provisioner, vote_selection and dispute-coordinator #6775

Merged
merged 5 commits into from
Mar 6, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove some trace lines
  • Loading branch information
tdimitrov committed Mar 1, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit ecf193b9efe5ef92e85f599547526f878f1515b6
Original file line number Diff line number Diff line change
@@ -211,12 +211,6 @@ where
onchain_state
} else {
// onchain knows nothing about this dispute - add all votes
gum::trace!(
target: LOG_TARGET,
?session_index,
?candidate_hash,
"Dispute unknown onchain - add all votes"
);
return (session_index, candidate_hash, votes)
};

3 changes: 1 addition & 2 deletions node/core/provisioner/src/lib.rs
Original file line number Diff line number Diff line change
@@ -181,7 +181,6 @@ fn handle_active_leaves_update(
) {
gum::trace!(target: LOG_TARGET, "Handle ActiveLeavesUpdate");
for deactivated in &update.deactivated {
gum::trace!(target: LOG_TARGET, leaf_hash=?deactivated, "Removing delay");
per_relay_parent.remove(deactivated);
}

@@ -593,7 +592,7 @@ async fn select_candidates(
}
}

gum::trace!(target: LOG_TARGET,
gum::trace!(target: LOG_TARGET,
leaf_hash=?relay_parent,
"before GetBackedCandidates");