Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
asterite committed Oct 23, 2024
1 parent 7e6736e commit afe7029
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ mod foo {
}
}

use foo::Trait::{me, self};
use foo::Trait::{self, me};

fn main(x: Field) {
let _ = foo::Trait::me(x);
Expand Down
2 changes: 1 addition & 1 deletion test_programs/execution_success/bigint/src/main.nr
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::{bigint::{Secpk1Fq, self}, println};
use std::{bigint::{self, Secpk1Fq}, println};

fn main(mut x: [u8; 5], y: [u8; 5]) {
let a = bigint::Secpk1Fq::from_le_bytes(&[x[0], x[1], x[2], x[3], x[4]]);
Expand Down
2 changes: 1 addition & 1 deletion test_programs/execution_success/eddsa/src/main.nr
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::{
compat,
ec::{consts::te::baby_jubjub, tecurve::affine::Point as TEPoint},
eddsa::{eddsa_poseidon_verify, eddsa_to_pub, eddsa_verify},
hash::{poseidon2::Poseidon2Hasher, self},
hash::{self, poseidon2::Poseidon2Hasher},
};

fn main(msg: pub Field, _priv_key_a: Field, _priv_key_b: Field) {
Expand Down

0 comments on commit afe7029

Please sign in to comment.