diff --git a/zcash_primitives/src/transaction/txid.rs b/zcash_primitives/src/transaction/txid.rs index e7d1ff5b2..464143947 100644 --- a/zcash_primitives/src/transaction/txid.rs +++ b/zcash_primitives/src/transaction/txid.rs @@ -518,6 +518,9 @@ impl TransactionDigest for BlockTxCommitmentDigester { if let Some(bundle) = sapling_bundle { for spend in &bundle.shielded_spends { h.write_all(&spend.zkproof).unwrap(); + } + + for spend in &bundle.shielded_spends { spend.spend_auth_sig.write(&mut h).unwrap(); }