Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[dag] rename reliable_broadcast.rs to rb_handler.rs #9454

Merged
merged 1 commit into from
Aug 11, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion consensus/src/dag/dag_handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use super::{
};
use crate::{
dag::{
dag_network::RpcHandler, dag_store::Dag, reliable_broadcast::NodeBroadcastHandler,
dag_network::RpcHandler, dag_store::Dag, rb_handler::NodeBroadcastHandler,
types::DAGMessage,
},
network::{IncomingDAGRequest, TConsensusMsg},
Expand Down
2 changes: 1 addition & 1 deletion consensus/src/dag/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ mod dag_handler;
mod dag_network;
mod dag_store;
mod order_rule;
mod reliable_broadcast;
mod rb_handler;
mod storage;
#[cfg(test)]
mod tests;
Expand Down
2 changes: 1 addition & 1 deletion consensus/src/dag/tests/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ mod dag_test;
mod fetcher_test;
mod helpers;
mod order_rule_tests;
mod reliable_broadcast_tests;
mod rb_handler_tests;
mod types_test;
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

use crate::dag::{
dag_store::Dag,
reliable_broadcast::{NodeBroadcastHandleError, NodeBroadcastHandler},
rb_handler::{NodeBroadcastHandleError, NodeBroadcastHandler},
storage::DAGStorage,
tests::{dag_test::MockStorage, helpers::new_node},
types::NodeCertificate,
Expand Down