From 1ff84c3d4316195670122b065e57798235db0ee5 Mon Sep 17 00:00:00 2001 From: Deirdre Connolly Date: Tue, 20 Apr 2021 11:08:47 -0400 Subject: [PATCH] Refer to const generics issue --- zebra-chain/src/orchard/note/ciphertexts.rs | 1 + zebra-chain/src/primitives/proofs/halo2.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/zebra-chain/src/orchard/note/ciphertexts.rs b/zebra-chain/src/orchard/note/ciphertexts.rs index 5de5be687..b858fbd43 100644 --- a/zebra-chain/src/orchard/note/ciphertexts.rs +++ b/zebra-chain/src/orchard/note/ciphertexts.rs @@ -17,6 +17,7 @@ impl fmt::Debug for EncryptedNote { } // These impls all only exist because of array length restrictions. +// TODO: use const generics https://github.com/ZcashFoundation/zebra/issues/2042 impl Copy for EncryptedNote {} diff --git a/zebra-chain/src/primitives/proofs/halo2.rs b/zebra-chain/src/primitives/proofs/halo2.rs index 240ba8972..4e90463af 100644 --- a/zebra-chain/src/primitives/proofs/halo2.rs +++ b/zebra-chain/src/primitives/proofs/halo2.rs @@ -21,6 +21,7 @@ impl fmt::Debug for Halo2Proof { } // These impls all only exist because of array length restrictions. +// TODO: use const generics https://github.com/ZcashFoundation/zebra/issues/2042 // impl Copy for Halo2Proof {}