Skip to content

Commit 780354f

Browse files
committed
fix: add missing new lines
1 parent ab25058 commit 780354f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

crates/batcher/src/ffi/circom_ffi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ extern "C" {
66
public_input: ListRef,
77
verification_key: ListRef,
88
) -> bool;
9-
}
9+
}

crates/batcher/src/ffi/gnark_ffi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ extern "C" {
1616
public_input: ListRef,
1717
verification_key: ListRef,
1818
) -> bool;
19-
}
19+
}

crates/batcher/src/ffi/list_ref.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ impl From<&[u8]> for ListRef {
2323
let data = v.as_ptr().cast();
2424
ListRef { data, len }
2525
}
26-
}
26+
}

crates/batcher/src/ffi/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
mod list_ref;
22
pub mod circom_ffi;
3-
pub mod gnark_ffi;
3+
pub mod gnark_ffi;

0 commit comments

Comments
 (0)