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

fixed a couple of typos #3963

Merged
merged 1 commit into from
Dec 12, 2024
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 crates/examples/infra/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ where
.to_string()
};

// Create the qurorum membership from the list of known nodes
// Create the quorum membership from the list of known nodes
let all_nodes = config.config.known_nodes_with_stake.clone();
let da_nodes = config.config.known_da_nodes.clone();
let quorum_membership = TYPES::Membership::new(all_nodes, da_nodes);
Expand Down
2 changes: 1 addition & 1 deletion crates/task-impls/src/network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pub struct NetworkMessageTaskState<TYPES: NodeType> {
/// This nodes public key
pub public_key: TYPES::SignatureKey,

/// Transaction Cache to ignore previously seen transatctions
/// Transaction Cache to ignore previously seen transactions
pub transactions_cache: lru::LruCache<u64, ()>,
}

Expand Down
2 changes: 1 addition & 1 deletion crates/task-impls/src/quorum_vote/handlers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ pub(crate) async fn update_shared_state<
let justify_qc = &proposed_leaf.justify_qc();

let consensus_reader = consensus.read().await;
// Try to find the validated vview within the validasted state map. This will be present
// Try to find the validated view within the validated state map. This will be present
// if we have the saved leaf, but if not we'll get it when we fetch_proposal.
let mut maybe_validated_view = parent_view_number.and_then(|view_number| {
consensus_reader
Expand Down
Loading