From bad0d5c00c88323061c0be8a15ada443045f2d85 Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Wed, 19 Feb 2025 13:05:12 +0100 Subject: [PATCH 1/3] Update names.rs --- crates/cli/src/names.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/cli/src/names.rs b/crates/cli/src/names.rs index f170f9b4f..085c92434 100644 --- a/crates/cli/src/names.rs +++ b/crates/cli/src/names.rs @@ -17,7 +17,7 @@ pub(crate) fn name_of_circuit_data(name: &str, is_last_circuit: bool) -> String } } -// FIXME: adapt batcher crate, however the crate should provice this function +// FIXME: adapt batcher crate, however the crate should provide this function #[inline(always)] pub(crate) fn name_of_loadinfo(name: &str) -> String { format!("{}.loadinfo.json", name) From d2bd58230ef820717ac5d52a41438cae5bc96904 Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Wed, 19 Feb 2025 13:07:09 +0100 Subject: [PATCH 2/3] Update config.rs --- crates/cli/src/config.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/cli/src/config.rs b/crates/cli/src/config.rs index f36077516..6a5ada23d 100644 --- a/crates/cli/src/config.rs +++ b/crates/cli/src/config.rs @@ -107,7 +107,7 @@ impl Config { Ok(()) } - fn veryfying_key_consistent_check( + fn verifying_key_consistent_check( &self, verifying_key: &[u8], expected_md5: &str, @@ -535,19 +535,19 @@ impl Config { #[cfg(feature = "continuation")] if proofs.peek().is_none() { - self.veryfying_key_consistent_check( + self.verifying_key_consistent_check( &buf, &self.circuit_datas.finalized_circuit.verifying_key_md5, )?; } else { - self.veryfying_key_consistent_check( + self.verifying_key_consistent_check( &buf, &self.circuit_datas.on_going_circuit.verifying_key_md5, )?; } #[cfg(not(feature = "continuation"))] - self.veryfying_key_consistent_check( + self.verifying_key_consistent_check( &buf, &self.circuit_datas.finalized_circuit.verifying_key_md5, )?; From f7dae714dc2a920cae5053bf90812f1ff0623d82 Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Wed, 19 Feb 2025 13:07:50 +0100 Subject: [PATCH 3/3] Update v2.rs --- .../zkwasm/src/runtime/monitor/plugins/table/transaction/v2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/zkwasm/src/runtime/monitor/plugins/table/transaction/v2.rs b/crates/zkwasm/src/runtime/monitor/plugins/table/transaction/v2.rs index 3defe8fe9..9b59027a9 100644 --- a/crates/zkwasm/src/runtime/monitor/plugins/table/transaction/v2.rs +++ b/crates/zkwasm/src/runtime/monitor/plugins/table/transaction/v2.rs @@ -68,7 +68,7 @@ impl Checkpoint { // return value: // Ordering::Greater: at least one of transaction is overflow // Ordering::Equal: all transactions are full - // Ordering::Less : no transaction overflow and at least one of transacion is not full + // Ordering::Less : no transaction overflow and at least one of transaction is not full fn transactions_group_number_ordering( &self, applied_transactions_group_number: &HashMap,