From 83d2425eafe284d4031daa457a0d0a9806b1ef87 Mon Sep 17 00:00:00 2001 From: thiolliere Date: Thu, 24 Oct 2019 13:52:10 +0200 Subject: [PATCH] copyright --- network/src/lib.rs | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/network/src/lib.rs b/network/src/lib.rs index e1d5a73736..623ffbe337 100644 --- a/network/src/lib.rs +++ b/network/src/lib.rs @@ -1,3 +1,23 @@ +// Copyright 2019 Parity Technologies (UK) Ltd. +// This file is part of Polkadot. + +// Polkadot is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. + +// Polkadot is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License +// along with Polkadot. If not, see . + +//! Cumulus-specific network implementation. +//! +//! Contains message send between collators and logic to process them. + use substrate_client::error::{Error as ClientError}; use sr_primitives::traits::{Block as BlockT}; use substrate_consensus_common::block_validation::{Validation, BlockAnnounceValidator}; @@ -12,10 +32,6 @@ use codec::{Decode, Encode}; use std::marker::PhantomData; -//! Cumulus-specific network implementation. -//! -//! Contains message send between collators and logic to process them. - /// Justification that a parachain block is the parachain block candidate of one of the relay chain /// validator. #[derive(Encode, Decode)]