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

Remove unnecessary symbols in comment #2005

Merged
merged 3 commits into from
Dec 6, 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 contracts/rust/adapter/src/jellyfish.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ impl From<VerifyingKey<Bn254>> for ParsedVerifyingKey {
// ```rust
// let srs = ark_srs::kzg10::aztec20::setup(2u64.pow(6) as usize + 2).expect("Aztec SRS fail to load");
// println!("{}", hex::encode(jf_utils::to_bytes!(&srs.beta_h).unwrap()));
// ````
// ```
assert_eq!(
g2_lsb.encode_hex::<String>(),
String::from("b0838893ec1f237e8b07323b0744599f4e97b598b3b589bcc2bc37b8d5c41801")
Expand Down
2 changes: 1 addition & 1 deletion marketplace-solver/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ impl UpdateSolverState for GlobalState {
registration.body.active = active;
}

// The given signature key should also be from the database `signature_keys`.`
// The given signature key should also be from the database `signature_keys`.
if !registration.body.signature_keys.contains(&signature_key) {
return Err(SolverError::SignatureKeysMismatch(
signature_key.to_string(),
Expand Down
Loading