From 736092abb8e29f2703f9da91e2409b3eeac4be11 Mon Sep 17 00:00:00 2001 From: Jane Lusby Date: Fri, 19 Feb 2021 13:28:07 -0800 Subject: [PATCH] Apply suggestions from code review Co-authored-by: teor --- zebra-network/src/peer/connection.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zebra-network/src/peer/connection.rs b/zebra-network/src/peer/connection.rs index 9bccfbce..f9681522 100644 --- a/zebra-network/src/peer/connection.rs +++ b/zebra-network/src/peer/connection.rs @@ -2,6 +2,11 @@ //! //! Maps the external Zcash/Bitcoin protocol to Zebra's internal request/response //! protocol. +//! +//! This module contains a lot of undocumented assumptions about the Zcash +//! network protocol. We don't know if these assumptions match the `zcashd` +//! implementation. It should be refactored into a cleaner set of +//! request/response pairs (#1515). use std::{ collections::HashSet,