Revert making sapling::note::Nullifier inner value private

This commit is contained in:
Deirdre Connolly 2021-03-20 13:08:39 -04:00 committed by Deirdre Connolly
parent 44966326c1
commit 195d3f106c
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ fn prf_nf(nk: [u8; 32], rho: [u8; 32]) -> [u8; 32] {
any(test, feature = "proptest-impl"),
derive(proptest_derive::Arbitrary)
)]
pub struct Nullifier([u8; 32]);
pub struct Nullifier(pub [u8; 32]);
impl From<[u8; 32]> for Nullifier {
fn from(buf: [u8; 32]) -> Self {