From 8ececebea7ef02adfcf2e544becf1199b40a305d Mon Sep 17 00:00:00 2001 From: Deirdre Connolly Date: Thu, 30 Jul 2020 00:57:26 -0400 Subject: [PATCH] A space Co-authored-by: teor --- zebra-chain/src/notes/sprout/nullifiers.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebra-chain/src/notes/sprout/nullifiers.rs b/zebra-chain/src/notes/sprout/nullifiers.rs index 18f30b9a6..2a6957604 100644 --- a/zebra-chain/src/notes/sprout/nullifiers.rs +++ b/zebra-chain/src/notes/sprout/nullifiers.rs @@ -25,7 +25,7 @@ fn prf_nf(a_sk: [u8; 32], rho: [u8; 32]) -> [u8; 32] { block[0..32].copy_from_slice(&a_sk[..]); // The first four bits –i.e. the most signicant four bits of the // first byte– are used to separate distinct uses - // ofSHA256Compress, ensuring that the functions are independent. + // of SHA256Compress, ensuring that the functions are independent. block[0] |= 0b1110_0000; block[32..].copy_from_slice(&rho[..]);