Skip to content

Commit

Permalink
feat(chain-ops): Log signer's fetched sequence number.
Browse files Browse the repository at this point in the history
  • Loading branch information
KirilMihaylov committed Sep 26, 2024
1 parent c3fbf42 commit eb8377e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion chain-ops/src/task/broadcast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,10 @@ where
log_broadcast!(info!("Fetching sequence number."));

self.signer.fetch_sequence_number().await.map(|()| {
log_broadcast!(info!("Fetched sequence number."));
log_broadcast!(info!(
value = self.signer.sequence_number(),
"Fetched sequence number.",
));
})
}

Expand Down

0 comments on commit eb8377e

Please sign in to comment.