Skip to content

Commit

Permalink
[dag] rename reliable_broadcast.rs to rb_handler.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
ibalajiarun committed Aug 11, 2023
1 parent 82cc177 commit 3a1076c
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
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
File renamed without changes.
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

0 comments on commit 3a1076c

Please sign in to comment.