Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekseiVambol committed Dec 23, 2024
1 parent 0157ff6 commit d8232a5
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions rln/src/ffi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -258,10 +258,7 @@ pub extern "C" fn new_with_params(
vk_buffer: *const Buffer,
ctx: *mut *mut RLN,
) -> bool {
match RLN::new_with_params(
zkey_buffer.process().to_vec(),
vk_buffer.process().to_vec(),
) {
match RLN::new_with_params(zkey_buffer.process().to_vec(), vk_buffer.process().to_vec()) {
Ok(rln) => {
unsafe { *ctx = Box::into_raw(Box::new(rln)) };
true
Expand Down

0 comments on commit d8232a5

Please sign in to comment.