Skip to content
Merged
Changes from all commits
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
5 changes: 4 additions & 1 deletion canister/src/jobs/process_votes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ fn run() {
}

async fn process_vote(vote: VoteToProcess) {
log(format!("Processing vote: {vote:?}"));
let vote_string = format!("{vote:?}");
log(format!("Processing vote: {vote_string}"));

match vote {
VoteToProcess::NnsVote(pair_id, nns_vote) => {
Expand Down Expand Up @@ -145,6 +146,8 @@ async fn process_vote(vote: VoteToProcess) {
}
}

log(format!("Finished processing vote: {vote_string}"));

state::read(start_job_if_required);
}

Expand Down
Loading