From 898a18e35b0a7cd72b14ce09828a1311d0e3edd1 Mon Sep 17 00:00:00 2001 From: Marco Date: Wed, 29 Jan 2025 12:01:37 +0100 Subject: [PATCH 1/2] fix typos builder_state.rs --- crates/marketplace/src/builder_state.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/crates/marketplace/src/builder_state.rs b/crates/marketplace/src/builder_state.rs index 2ffd5bb..f2aaef6 100644 --- a/crates/marketplace/src/builder_state.rs +++ b/crates/marketplace/src/builder_state.rs @@ -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 @@ -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 @@ -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."); } } @@ -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 @@ -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."); } } From dacaca6c812462c154575e96a53106d80240acc7 Mon Sep 17 00:00:00 2001 From: Marco Date: Wed, 29 Jan 2025 12:03:06 +0100 Subject: [PATCH 2/2] fix typos builder_state.rs --- crates/legacy/src/builder_state.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/crates/legacy/src/builder_state.rs b/crates/legacy/src/builder_state.rs index 9eca412..1dc70de 100644 --- a/crates/legacy/src/builder_state.rs +++ b/crates/legacy/src/builder_state.rs @@ -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 @@ -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 @@ -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."); } } @@ -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 @@ -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."); } }