Update zebra-chain/src/orchard/note/nullifiers.rs

Co-authored-by: teor <teor@riseup.net>
This commit is contained in:
Deirdre Connolly 2021-03-18 10:25:25 -04:00 committed by Deirdre Connolly
parent 81da8363a8
commit e4fe8bb320
1 changed files with 1 additions and 2 deletions

View File

@ -62,9 +62,8 @@ impl From<(NullifierDerivingKey, Note, NoteCommitment)> for Nullifier {
/// https://zips.z.cash/protocol/nu5.pdf#commitmentsandnullifiers
#[allow(non_snake_case)]
fn from((nk, note, cm): (NullifierDerivingKey, Note, NoteCommitment)) -> Self {
// TODO: fill this in (K^Orchard) from the spec when defined:
// https://zips.z.cash/protocol/nu5.pdf#commitmentsandnullifiers
let K = pallas_group_hash(b"Zcash_P_", b"");
let K = pallas_group_hash(b"z.cash:Orchard", b"K");
// impl Add for pallas::Base reduces by the modulus (q_P)
//