Skip to content

Commit

Permalink
Make Signed and Bounded create-private
Browse files Browse the repository at this point in the history
  • Loading branch information
fjarri committed Dec 9, 2024
1 parent 61aa1a9 commit 704ed65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion synedrion/src/uint/bounded.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ where
into = "PackedBounded",
bound = "T: Integer + Encoding + crypto_bigint::Bounded"
)]
pub struct Bounded<T> {
pub(crate) struct Bounded<T> {
/// bound on the bit size of the value
bound: u32,
value: T,
Expand Down
2 changes: 1 addition & 1 deletion synedrion/src/uint/signed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ where
into = "PackedSigned",
bound = "T: Integer + Encoding + crypto_bigint::Bounded + ConditionallySelectable"
)]
pub struct Signed<T> {
pub(crate) struct Signed<T> {
/// bound on the bit size of the absolute value
bound: u32,
value: T,
Expand Down

0 comments on commit 704ed65

Please sign in to comment.