Revert "make sure peer/error.s comments are up to date"

This reverts commit 6f205a1812.
This commit is contained in:
teor 2021-02-23 10:54:48 +10:00 committed by Jane Lusby
parent 3b2077fcfd
commit 1a70d807b6
1 changed files with 0 additions and 3 deletions

View File

@ -8,9 +8,6 @@ use zebra_chain::serialization::SerializationError;
use crate::protocol::external::InventoryHash;
/// A wrapper around `Arc<PeerError>` that implements `Error`.
// TODO soon this Wrapper will not be necessary. Once
// https://github.com/rust-lang/rust/pull/80553 lands on stable we should
// replace this with a type alias.
#[derive(Error, Debug, Clone)]
#[error(transparent)]
pub struct SharedPeerError(Arc<TracedError<PeerError>>);