Skip to content
This repository was archived by the owner on Aug 5, 2025. It is now read-only.

Commit 744505c

Browse files
committed
pub exports
1 parent 516500f commit 744505c

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

crates/shielder-circuits/src/circuits/deposit/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ use strum_macros::{EnumCount, EnumIter};
33
use crate::merkle::{MerkleConstraints, MerkleInstance};
44

55
mod chip;
6-
pub mod circuit;
6+
mod circuit;
77
mod knowledge;
88

9-
pub use circuit::DepositCircuit;
10-
pub use knowledge::DepositProverKnowledge;
9+
pub use circuit::*;
10+
pub use knowledge::*;
1111

1212
#[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, EnumIter, EnumCount)]
1313
pub enum DepositInstance {

crates/shielder-circuits/src/circuits/new_account/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
use strum_macros::{EnumCount, EnumIter};
22

33
mod chip;
4-
pub mod circuit;
4+
mod circuit;
55
mod knowledge;
66

7-
pub use circuit::NewAccountCircuit;
8-
pub use knowledge::NewAccountProverKnowledge;
7+
pub use circuit::*;
8+
pub use knowledge::*;
99

1010
#[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, EnumIter, EnumCount)]
1111
pub enum NewAccountInstance {

crates/shielder-circuits/src/circuits/withdraw/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ use strum_macros::{EnumCount, EnumIter};
33
use crate::merkle::{MerkleConstraints, MerkleInstance};
44

55
mod chip;
6-
pub mod circuit;
6+
mod circuit;
77
mod knowledge;
88

9-
pub use circuit::WithdrawCircuit;
10-
pub use knowledge::WithdrawProverKnowledge;
9+
pub use circuit::*;
10+
pub use knowledge::*;
1111

1212
#[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, EnumIter, EnumCount)]
1313
pub enum WithdrawInstance {

0 commit comments

Comments
 (0)