Fix zcash_note_encryption doctests.

This commit is contained in:
Kris Nuttycombe 2021-03-27 19:29:42 -06:00
parent 213cd6cce9
commit dad8663c55
2 changed files with 4 additions and 2 deletions

View File

@ -20,3 +20,4 @@ rand_core = "0.5.1"
[dev-dependencies]
zcash_primitives = { version = "0.5", path = "../../zcash_primitives" }
jubjub = "0.5.1"

View File

@ -168,9 +168,10 @@ pub trait ShieldedOutput<'a, D: Domain> {
/// use rand_core::OsRng;
/// use zcash_primitives::{
/// consensus::TestNetwork,
/// memo::MemoBytes,
/// sapling::{
/// keys::{OutgoingViewingKey, prf_expand},
/// note_encryption::{Memo, sapling_note_encryption},
/// note_encryption::{sapling_note_encryption},
/// Diversifier, PaymentAddress, Rseed, ValueCommitment
/// },
/// };
@ -192,7 +193,7 @@ pub trait ShieldedOutput<'a, D: Domain> {
/// let note = to.create_note(value, Rseed::BeforeZip212(rcm)).unwrap();
/// let cmu = note.cmu();
///
/// let mut enc = sapling_note_encryption::<_, TestNetwork>(ovk, note, to, Memo::default(), &mut rng);
/// let mut enc = sapling_note_encryption::<_, TestNetwork>(ovk, note, to, MemoBytes::empty(), &mut rng);
/// let encCiphertext = enc.encrypt_note_plaintext();
/// let outCiphertext = enc.encrypt_outgoing_plaintext(&cv.commitment().into(), &cmu, &mut rng);
/// ```