Skip to content

Commit

Permalink
make ShieldedResult fields public (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
bazzilic authored Sep 18, 2023
1 parent 8a490cc commit 564ca26
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions taiga_halo2/src/transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ pub struct ShieldedPartialTxBundle {
#[cfg_attr(feature = "nif", derive(NifStruct))]
#[cfg_attr(feature = "nif", module = "Taiga.Transaction.Result")]
pub struct ShieldedResult {
anchors: Vec<pallas::Base>,
nullifiers: Vec<Nullifier>,
output_cms: Vec<pallas::Base>,
pub anchors: Vec<pallas::Base>,
pub nullifiers: Vec<Nullifier>,
pub output_cms: Vec<pallas::Base>,
}

#[derive(Debug, Clone)]
Expand Down

0 comments on commit 564ca26

Please sign in to comment.