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

Fix typos in builder_state.rs #292

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions crates/legacy/src/builder_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1220,7 +1220,7 @@ mod test {
.spawned_builder_states
.contains_key(&builder_state_id)
{
panic!("global_state shouldn't have cooresponding builder_state_id without matching quorum proposal.");
panic!("global_state shouldn't have corresponding builder_state_id without matching quorum proposal.");
}

// sub-test two
Expand All @@ -1243,7 +1243,7 @@ mod test {
.spawned_builder_states
.contains_key(&builder_state_id_1)
{
panic!("global_state shouldn't have cooresponding builder_state_id without matching quorum proposal.");
panic!("global_state shouldn't have corresponding builder_state_id without matching quorum proposal.");
}

// sub-test three
Expand Down Expand Up @@ -1277,7 +1277,7 @@ mod test {
{
tracing::debug!("global_state updated successfully");
} else {
panic!("global_state should have cooresponding builder_state_id as now we have matching quorum proposal.");
panic!("global_state should have corresponding builder_state_id as now we have matching quorum proposal.");
}
}

Expand Down Expand Up @@ -1342,7 +1342,7 @@ mod test {
.spawned_builder_states
.contains_key(&builder_state_id)
{
panic!("global_state shouldn't have cooresponding builder_state_id without matching quorum proposal.");
panic!("global_state shouldn't have corresponding builder_state_id without matching quorum proposal.");
}

// sub-test two
Expand Down Expand Up @@ -1380,7 +1380,7 @@ mod test {
{
tracing::debug!("global_state updated successfully");
} else {
panic!("global_state should have cooresponding builder_state_id as now we have matching da proposal.");
panic!("global_state should have corresponding builder_state_id as now we have matching da proposal.");
}
}

Expand Down
10 changes: 5 additions & 5 deletions crates/marketplace/src/builder_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1182,7 +1182,7 @@ mod test {
.spawned_builder_states
.contains_key(&builder_state_id)
{
panic!("global_state shouldn't have cooresponding builder_state_id without matching quorum proposal.");
panic!("global_state shouldn't have corresponding builder_state_id without matching quorum proposal.");
}

// sub-test two
Expand All @@ -1207,7 +1207,7 @@ mod test {
.spawned_builder_states
.contains_key(&builder_state_id_1)
{
panic!("global_state shouldn't have cooresponding builder_state_id without matching quorum proposal.");
panic!("global_state shouldn't have corresponding builder_state_id without matching quorum proposal.");
}

// sub-test three
Expand Down Expand Up @@ -1243,7 +1243,7 @@ mod test {
{
tracing::debug!("global_state updated successfully");
} else {
panic!("global_state should have cooresponding builder_state_id as now we have matching quorum proposal.");
panic!("global_state should have corresponding builder_state_id as now we have matching quorum proposal.");
}
}

Expand Down Expand Up @@ -1308,7 +1308,7 @@ mod test {
.spawned_builder_states
.contains_key(&builder_state_id)
{
panic!("global_state shouldn't have cooresponding builder_state_id without matching quorum proposal.");
panic!("global_state shouldn't have corresponding builder_state_id without matching quorum proposal.");
}

// sub-test two
Expand Down Expand Up @@ -1344,7 +1344,7 @@ mod test {
{
tracing::debug!("global_state updated successfully");
} else {
panic!("global_state should have cooresponding builder_state_id as now we have matching da proposal.");
panic!("global_state should have corresponding builder_state_id as now we have matching da proposal.");
}
}

Expand Down