Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
samkim-crypto committed Apr 19, 2024
1 parent 0549bd9 commit 8d97bf7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
mod handles_2;
mod handles_3;

pub use handles_2::{
BatchedGroupedCiphertext2HandlesValidityProofContext,
BatchedGroupedCiphertext2HandlesValidityProofData,
};
pub use handles_3::{
BatchedGroupedCiphertext3HandlesValidityProofContext,
BatchedGroupedCiphertext3HandlesValidityProofData,
pub use {
handles_2::{
BatchedGroupedCiphertext2HandlesValidityProofContext,
BatchedGroupedCiphertext2HandlesValidityProofData,
},
handles_3::{
BatchedGroupedCiphertext3HandlesValidityProofContext,
BatchedGroupedCiphertext3HandlesValidityProofData,
},
};
12 changes: 7 additions & 5 deletions zk-token-sdk/src/instruction/grouped_ciphertext_validity/mod.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
mod handles_2;
mod handles_3;

pub use handles_2::{
GroupedCiphertext2HandlesValidityProofContext, GroupedCiphertext2HandlesValidityProofData,
};
pub use handles_3::{
GroupedCiphertext3HandlesValidityProofContext, GroupedCiphertext3HandlesValidityProofData,
pub use {
handles_2::{
GroupedCiphertext2HandlesValidityProofContext, GroupedCiphertext2HandlesValidityProofData,
},
handles_3::{
GroupedCiphertext3HandlesValidityProofContext, GroupedCiphertext3HandlesValidityProofData,
},
};

0 comments on commit 8d97bf7

Please sign in to comment.