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

Commit 516500f

Browse files
committed
pub module
1 parent 867c054 commit 516500f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use strum_macros::{EnumCount, EnumIter};
33
use crate::merkle::{MerkleConstraints, MerkleInstance};
44

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

99
pub use circuit::DepositCircuit;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use strum_macros::{EnumCount, EnumIter};
22

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

77
pub use circuit::NewAccountCircuit;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use strum_macros::{EnumCount, EnumIter};
33
use crate::merkle::{MerkleConstraints, MerkleInstance};
44

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

99
pub use circuit::WithdrawCircuit;

0 commit comments

Comments
 (0)