From 157add149a47612eb59b87f77cf6668170cb5341 Mon Sep 17 00:00:00 2001 From: Deirdre Connolly Date: Tue, 28 Jan 2020 01:07:14 -0500 Subject: [PATCH] Note that shielded_data::EncryptedCiphertext should move as part of note encryption work Co-Authored-By: Henry de Valence --- zebra-chain/src/transaction/shielded_data.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/zebra-chain/src/transaction/shielded_data.rs b/zebra-chain/src/transaction/shielded_data.rs index 78d348fb..a80c1494 100644 --- a/zebra-chain/src/transaction/shielded_data.rs +++ b/zebra-chain/src/transaction/shielded_data.rs @@ -203,6 +203,7 @@ impl Arbitrary for ShieldedData { } /// A ciphertext component for encrypted output notes. +// XXX move as part of #181 (note encryption implementation) pub struct EncryptedCiphertext(pub [u8; 580]); impl fmt::Debug for EncryptedCiphertext {