Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
mwtian committed Feb 24, 2024
1 parent a3ab1dd commit 3dc5d6d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion consensus/core/src/authority_node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,10 @@ where
commit_consumer: CommitConsumer,
registry: Registry,
) -> Self {
info!("Starting authority with index {}", own_index);
info!(
"Starting authority {}\n{:#?}\n{:#?}\n{:?}",
own_index, committee, parameters, protocol_config.version
);
let context = Arc::new(Context::new(
own_index,
committee,
Expand Down
2 changes: 1 addition & 1 deletion consensus/core/src/broadcaster.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ impl Broadcaster {
continue;
}
};
requests.push(send_block(network_client.clone(), peer, rtt_estimate, block));
requests.push(send_block(network_client.clone(), peer, rtt_estimate, block));
}
Some((resp, start, block)) = requests.next() => {
match resp {
Expand Down

0 comments on commit 3dc5d6d

Please sign in to comment.