From 997b8aeff7cf0756f00df4ec4fd40165b29483f2 Mon Sep 17 00:00:00 2001 From: Sydney Anne Erickson <sydney@elixxir.io> Date: Mon, 3 Aug 2020 13:29:46 -0700 Subject: [PATCH] Update license headers for gossip files --- go.mod | 2 +- go.sum | 2 ++ gossip/endpoint_test.go | 7 +++++++ gossip/gossip.proto | 7 +++++++ gossip/manager_test.go | 7 +++++++ gossip/protocol_test.go | 7 +++++++ 6 files changed, 31 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 9970318..15b8bcf 100644 --- a/go.mod +++ b/go.mod @@ -9,7 +9,7 @@ require ( github.com/zeebo/blake3 v0.0.4 gitlab.com/elixxir/comms v0.0.0-20200707210150-b8ebd0951d23 gitlab.com/elixxir/crypto v0.0.0-20200707005343-97f868cbd930 - gitlab.com/elixxir/primitives v0.0.0-20200706165052-9fe7a4fb99a3 + gitlab.com/elixxir/primitives v0.0.0-20200731184040-494269b53b4d golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 golang.org/x/net v0.0.0-20200707034311-ab3426394381 google.golang.org/grpc v1.30.0 diff --git a/go.sum b/go.sum index 8b68c02..9304ebd 100644 --- a/go.sum +++ b/go.sum @@ -63,6 +63,8 @@ gitlab.com/elixxir/crypto v0.0.0-20200707005343-97f868cbd930 h1:9qzfwyR12OYgn3j3 gitlab.com/elixxir/crypto v0.0.0-20200707005343-97f868cbd930/go.mod h1:LHBAaEf48a0/AjU118rjoworH0LgXifhAqmNX3ZRvME= gitlab.com/elixxir/primitives v0.0.0-20200706165052-9fe7a4fb99a3 h1:GTfflZBNLeBq3UApYog0J3+hytdkoRsDduGQji2wyEU= gitlab.com/elixxir/primitives v0.0.0-20200706165052-9fe7a4fb99a3/go.mod h1:OQgUZq7SjnE0b+8+iIAT2eqQF+2IFHn73tOo+aV11mg= +gitlab.com/elixxir/primitives v0.0.0-20200731184040-494269b53b4d h1:OKWTmYN5q8XVHo8JXThIH0TCuvl/fLXR7MGVacpqfRg= +gitlab.com/elixxir/primitives v0.0.0-20200731184040-494269b53b4d/go.mod h1:OQgUZq7SjnE0b+8+iIAT2eqQF+2IFHn73tOo+aV11mg= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 h1:psW17arqaxU48Z5kZ0CQnkZWQJsqcURM6tKiBApRjXI= diff --git a/gossip/endpoint_test.go b/gossip/endpoint_test.go index 834d77b..3cac2d3 100644 --- a/gossip/endpoint_test.go +++ b/gossip/endpoint_test.go @@ -1,3 +1,10 @@ +/////////////////////////////////////////////////////////////////////////////// +// Copyright © 2020 xx network SEZC // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +/////////////////////////////////////////////////////////////////////////////// + package gossip import ( diff --git a/gossip/gossip.proto b/gossip/gossip.proto index 8e1455d..1f098d4 100644 --- a/gossip/gossip.proto +++ b/gossip/gossip.proto @@ -1,3 +1,10 @@ +/////////////////////////////////////////////////////////////////////////////// +// Copyright © 2020 xx network SEZC // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +/////////////////////////////////////////////////////////////////////////////// + syntax = "proto3"; package gossip; diff --git a/gossip/manager_test.go b/gossip/manager_test.go index 4a76fb6..29f9f96 100644 --- a/gossip/manager_test.go +++ b/gossip/manager_test.go @@ -1,3 +1,10 @@ +/////////////////////////////////////////////////////////////////////////////// +// Copyright © 2020 xx network SEZC // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +/////////////////////////////////////////////////////////////////////////////// + package gossip import ( diff --git a/gossip/protocol_test.go b/gossip/protocol_test.go index aaba4e3..0bbb2d9 100644 --- a/gossip/protocol_test.go +++ b/gossip/protocol_test.go @@ -1,3 +1,10 @@ +/////////////////////////////////////////////////////////////////////////////// +// Copyright © 2020 xx network SEZC // +// // +// Use of this source code is governed by a license that can be found in the // +// LICENSE file // +/////////////////////////////////////////////////////////////////////////////// + package gossip import ( -- GitLab