Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
xevisalle committed May 16, 2024
1 parent da93968 commit 96230a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion circuits/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Add `phoenix-circuits` as a workspace member of `phoenix` [#171]
- Add elgamal encryption and decryption gadgets [#171]
- Add the `transfer` module [#169]
- Add the `transaction` module [#169]

<!-- ISSUES -->
[#169]: https://github.com/dusk-network/phoenix/issues/169
Expand Down
6 changes: 3 additions & 3 deletions circuits/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
#![no_std]

mod encryption;
mod transaction;

/// Transaction structs, gadget, and circuit
pub mod transaction;

/// ElGamal asymmetric cipher
pub use encryption::elgamal;
/// Transaction structs, gadget, and TxCircuit
pub use transaction::{gadget, TxCircuit, TxInputNote, TxOutputNote};

0 comments on commit 96230a6

Please sign in to comment.