diff --git a/crates/cli/src/config.rs b/crates/cli/src/config.rs index f3607751..6a5ada23 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, )?; diff --git a/crates/cli/src/names.rs b/crates/cli/src/names.rs index f170f9b4..085c9243 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) 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 3defe8fe..9b59027a 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,