Skip to content

Commit

Permalink
[mempool] fix bootstrap typo
Browse files Browse the repository at this point in the history
per title
  • Loading branch information
Phoenix Orlov authored and calibra-opensource committed Jun 18, 2019
1 parent a04d3e0 commit f6815d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libra_node/src/main_node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ pub fn setup_environment(node_config: &NodeConfig) -> (AdmissionControlClient, L

instant = Instant::now();
let mempool =
MempoolRuntime::boostrap(&node_config, mempool_network_sender, mempool_network_events);
MempoolRuntime::bootstrap(&node_config, mempool_network_sender, mempool_network_events);
debug!("Mempool started in {} ms", instant.elapsed().as_millis());

let debug_if = ServerHandle::setup(setup_debug_interface(&node_config));
Expand Down
2 changes: 1 addition & 1 deletion mempool/src/runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub struct MempoolRuntime {

impl MempoolRuntime {
/// setup Mempool runtime
pub fn boostrap(
pub fn bootstrap(
config: &NodeConfig,
network_sender: MempoolNetworkSender,
network_events: MempoolNetworkEvents,
Expand Down

0 comments on commit f6815d2

Please sign in to comment.