forked from solana-labs/solana
-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0549bd9
commit 8d97bf7
Showing
2 changed files
with
16 additions
and
12 deletions.
There are no files selected for viewing
16 changes: 9 additions & 7 deletions
16
zk-token-sdk/src/instruction/batched_grouped_ciphertext_validity/mod.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
12
zk-token-sdk/src/instruction/grouped_ciphertext_validity/mod.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
}, | ||
}; |