From b9ffa1737c7094b7eb21fadd815d5adc07ae3cb0 Mon Sep 17 00:00:00 2001 From: jahway603 Date: Wed, 8 May 2024 13:12:51 -0400 Subject: [PATCH] Updated copyright years and included Hush copyright on files missing one to resolve Issue #31 --- AUTHORS | 2 +- README.md | 2 +- cmd/root.go | 2 +- cmd/root_test.go | 2 +- cmd/version.go | 2 +- common/cache.go | 2 +- common/common.go | 2 +- common/generatecerts.go | 4 ++-- common/logging/logging.go | 3 +++ common/logging/logging_test.go | 2 +- common/mempool.go | 2 +- contrib/debian/copyright | 2 +- frontend/rpc_client.go | 2 +- frontend/service.go | 2 +- main.go | 2 +- parser/block.go | 2 +- parser/block_header.go | 2 +- parser/block_header_test.go | 3 +++ parser/block_test.go | 3 +++ parser/fuzz.go | 3 +++ parser/internal/bytestring/bytestring.go | 2 +- parser/internal/bytestring/bytestring_test.go | 3 +++ parser/transaction.go | 2 +- parser/transaction_test.go | 3 +++ parser/util.go | 2 +- start-tls.sh | 2 +- start.sh | 2 +- util/RELEASE-new-version.sh | 2 +- util/build-debian-package-SBC.sh | 2 +- util/build-debian-package.sh | 2 +- util/build.sh | 2 +- walletrpc/compact_formats.pb.go | 2 +- walletrpc/compact_formats.proto | 2 +- walletrpc/generate.go | 3 +++ walletrpc/service.pb.go | 2 +- walletrpc/service.proto | 2 +- walletrpc/service_grpc.pb.go | 4 ++++ 37 files changed, 55 insertions(+), 30 deletions(-) diff --git a/AUTHORS b/AUTHORS index 084dcab..9104eb3 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,4 +1,4 @@ # The Hush Developers -Jahway603 https://git.hush.is/jahway603 https://github.com/jahway603 +jahway603 https://git.hush.is/jahway603 https://codeberg.org/jahway603 https://github.com/jahway603 Duke Leto https://git.hush.is/duke diff --git a/README.md b/README.md index 9ec021a..d6018ee 100644 --- a/README.md +++ b/README.md @@ -184,4 +184,4 @@ GPLv3 or later # Copyright -2016-2023 The Hush Developers +2016-2024 The Hush Developers diff --git a/cmd/root.go b/cmd/root.go index 76bd6e6..dbc3fac 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2023 Duke Leto and The Hush developers +// Copyright (c) 2019-2024 Duke Leto and The Hush developers // Copyright (c) 2019-2020 The Zcash developers // Distributed under the GPLv3 software license package cmd diff --git a/cmd/root_test.go b/cmd/root_test.go index 540f8a8..3f056eb 100644 --- a/cmd/root_test.go +++ b/cmd/root_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2023 Duke Leto and The Hush developers +// Copyright (c) 2019-2024 Duke Leto and The Hush developers // Copyright (c) 2019-2020 The Zcash developers // Distributed under the GPLv3 software license package cmd diff --git a/cmd/version.go b/cmd/version.go index 539db61..6467694 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2023 Duke Leto and The Hush developers +// Copyright (c) 2019-2024 Duke Leto and The Hush developers // Copyright (c) 2019-2020 The Zcash developers // Distributed under the GPLv3 software license package cmd diff --git a/common/cache.go b/common/cache.go index b078ca6..0726c3a 100644 --- a/common/cache.go +++ b/common/cache.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2023 Duke Leto and The Hush developers +// Copyright (c) 2019-2024 Duke Leto and The Hush developers // Copyright (c) 2019-2020 The Zcash developers // Distributed under the GPLv3 software license // Package common contains utilities that are shared by other packages. diff --git a/common/common.go b/common/common.go index 64ee77c..7cc2dea 100644 --- a/common/common.go +++ b/common/common.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2023 Duke Leto and The Hush developers +// Copyright (c) 2019-2024 Duke Leto and The Hush developers // Copyright (c) 2019-2020 The Zcash developers // Distributed under the GPLv3 software license package common diff --git a/common/generatecerts.go b/common/generatecerts.go index deb0205..dc94c73 100644 --- a/common/generatecerts.go +++ b/common/generatecerts.go @@ -1,6 +1,6 @@ +// Copyright (c) 2019-2024 Duke Leto and The Hush developers // Copyright (c) 2019-2020 The Zcash developers -// Distributed under the MIT software license, see the accompanying -// file COPYING or https://www.opensource.org/licenses/mit-license.php . +// Distributed under the GPLv3 software license package common import ( diff --git a/common/logging/logging.go b/common/logging/logging.go index 04b3cb0..fd86ddf 100644 --- a/common/logging/logging.go +++ b/common/logging/logging.go @@ -1,3 +1,6 @@ +// Copyright (c) 2019-2024 Duke Leto and The Hush developers +// Copyright (c) 2019-2020 The Zcash developers +// Distributed under the GPLv3 software license package logging import ( diff --git a/common/logging/logging_test.go b/common/logging/logging_test.go index 6dc7c2a..5996052 100644 --- a/common/logging/logging_test.go +++ b/common/logging/logging_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2023 Duke Leto and The Hush developers +// Copyright (c) 2019-2024 Duke Leto and The Hush developers // Copyright (c) 2019-2020 The Zcash developers // Distributed under the GPLv3 software license package logging diff --git a/common/mempool.go b/common/mempool.go index 4a2c488..936fb77 100644 --- a/common/mempool.go +++ b/common/mempool.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2023 Duke Leto and The Hush developers +// Copyright (c) 2019-2024 Duke Leto and The Hush developers // Copyright (c) 2019-2020 The Zcash developers // Distributed under the GPLv3 software license diff --git a/contrib/debian/copyright b/contrib/debian/copyright index 139c02d..a2e617a 100644 --- a/contrib/debian/copyright +++ b/contrib/debian/copyright @@ -1,5 +1,5 @@ Files: * -Copyright: 2019-2023, The Hush developers +Copyright: 2019-2024, The Hush developers 2018-2019, The Zcash developers License: GPLv3 Comment: https://hush.is diff --git a/frontend/rpc_client.go b/frontend/rpc_client.go index 2ce1024..2b3cc01 100644 --- a/frontend/rpc_client.go +++ b/frontend/rpc_client.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2023 Duke Leto and The Hush developers +// Copyright (c) 2019-2024 Duke Leto and The Hush developers // Copyright (c) 2019-2020 The Zcash developers // Distributed under the GPLv3 software license package frontend diff --git a/frontend/service.go b/frontend/service.go index 5884bab..f9436a8 100644 --- a/frontend/service.go +++ b/frontend/service.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2023 Duke Leto and The Hush developers +// Copyright (c) 2019-2024 Duke Leto and The Hush developers // Copyright (c) 2019-2020 The Zcash developers // Distributed under the GPLv3 software license // Package frontend implements the gRPC handlers called by the wallets. diff --git a/main.go b/main.go index 225849e..81b1372 100644 --- a/main.go +++ b/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2023 Duke Leto and The Hush developers +// Copyright (c) 2019-2024 Duke Leto and The Hush developers // Copyright (c) 2019-2020 The Zcash developers // Distributed under the GPLv3 software license package main diff --git a/parser/block.go b/parser/block.go index d8f25af..134ec43 100644 --- a/parser/block.go +++ b/parser/block.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2023 Duke Leto and The Hush developers +// Copyright (c) 2019-2024 Duke Leto and The Hush developers // Copyright (c) 2019-2020 The Zcash developers // Distributed under the GPLv3 software license diff --git a/parser/block_header.go b/parser/block_header.go index aa9d27b..9f655c2 100644 --- a/parser/block_header.go +++ b/parser/block_header.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2023 Duke Leto and The Hush developers +// Copyright (c) 2019-2024 Duke Leto and The Hush developers // Copyright (c) 2019-2020 The Zcash developers // Distributed under the GPLv3 software license package parser diff --git a/parser/block_header_test.go b/parser/block_header_test.go index fadeb6e..6eebb24 100644 --- a/parser/block_header_test.go +++ b/parser/block_header_test.go @@ -1,3 +1,6 @@ +// Copyright (c) 2019-2024 Duke Leto and The Hush developers +// Copyright (c) 2019-2020 The Zcash developers +// Distributed under the GPLv3 software license package parser import ( diff --git a/parser/block_test.go b/parser/block_test.go index 11b55af..6008191 100644 --- a/parser/block_test.go +++ b/parser/block_test.go @@ -1,3 +1,6 @@ +// Copyright (c) 2019-2024 Duke Leto and The Hush developers +// Copyright (c) 2019-2020 The Zcash developers +// Distributed under the GPLv3 software license package parser import ( diff --git a/parser/fuzz.go b/parser/fuzz.go index b0e9baa..aee600c 100644 --- a/parser/fuzz.go +++ b/parser/fuzz.go @@ -1,3 +1,6 @@ +// Copyright (c) 2019-2024 Duke Leto and The Hush developers +// Copyright (c) 2019-2020 The Zcash developers +// Distributed under the GPLv3 software license // +build gofuzz package parser diff --git a/parser/internal/bytestring/bytestring.go b/parser/internal/bytestring/bytestring.go index d634a19..0e94f58 100644 --- a/parser/internal/bytestring/bytestring.go +++ b/parser/internal/bytestring/bytestring.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2022 Duke Leto and The Hush developers +// Copyright (c) 2019-2024 Duke Leto and The Hush developers // Copyright (c) 2019-2020 The Zcash developers // Distributed under the GPLv3 software license diff --git a/parser/internal/bytestring/bytestring_test.go b/parser/internal/bytestring/bytestring_test.go index 2750bf3..4248813 100644 --- a/parser/internal/bytestring/bytestring_test.go +++ b/parser/internal/bytestring/bytestring_test.go @@ -1,3 +1,6 @@ +// Copyright (c) 2019-2024 Duke Leto and The Hush developers +// Copyright (c) 2019-2020 The Zcash developers +// Distributed under the GPLv3 software license package bytestring import ( diff --git a/parser/transaction.go b/parser/transaction.go index 89499c5..ae83aa8 100644 --- a/parser/transaction.go +++ b/parser/transaction.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2023 Duke Leto and The Hush developers +// Copyright (c) 2019-2024 Duke Leto and The Hush developers // Copyright (c) 2019-2020 The Zcash developers // Distributed under the GPLv3 software license // Package parser deserializes (full) transactions from hushd diff --git a/parser/transaction_test.go b/parser/transaction_test.go index e6370ed..5cb03ef 100644 --- a/parser/transaction_test.go +++ b/parser/transaction_test.go @@ -1,3 +1,6 @@ +// Copyright (c) 2019-2024 Duke Leto and The Hush developers +// Copyright (c) 2019-2020 The Zcash developers +// Distributed under the GPLv3 software license package parser import ( diff --git a/parser/util.go b/parser/util.go index 17e9fa8..42aa160 100644 --- a/parser/util.go +++ b/parser/util.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2023 Duke Leto and The Hush developers +// Copyright (c) 2019-2024 Duke Leto and The Hush developers // Copyright (c) 2019-2020 The Zcash developers // Distributed under the GPLv3 software license // Package parser deserializes (full) transactions from hushd diff --git a/start-tls.sh b/start-tls.sh index 38791ad..d2e7f01 100755 --- a/start-tls.sh +++ b/start-tls.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Copyright 2020-2023 The Hush Developers +# Copyright 2020-2024 The Hush Developers # Released under GPLv3 # Description: This script would be used with a NGINX reverse proxy diff --git a/start.sh b/start.sh index 49b3f4b..88dd809 100755 --- a/start.sh +++ b/start.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Copyright 2020-2023 The Hush Developers +# Copyright 2020-2024 The Hush Developers # Released under GPLv3 # Description: This script would be used with a NGINX reverse proxy diff --git a/util/RELEASE-new-version.sh b/util/RELEASE-new-version.sh index 58d41ed..88c26b0 100755 --- a/util/RELEASE-new-version.sh +++ b/util/RELEASE-new-version.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Copyright 2021-2023 Duke Leto and The Hush Developers +# Copyright 2021-2024 Duke Leto and The Hush Developers # Distributed under the GPLv3 software license, see the accompanying # file LICENSE or https://www.gnu.org/licenses/gpl-3.0.en.html # Purpose: To process a release for a new version of lightwalletd diff --git a/util/build-debian-package-SBC.sh b/util/build-debian-package-SBC.sh index 5b2afe3..0af061a 100755 --- a/util/build-debian-package-SBC.sh +++ b/util/build-debian-package-SBC.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Copyright (c) 2021-2023 The Hush developers +# Copyright (c) 2021-2024 The Hush developers # Distributed under the GPLv3 software license, see the accompanying # file LICENSE or https://www.gnu.org/licenses/gpl-3.0.en.html # diff --git a/util/build-debian-package.sh b/util/build-debian-package.sh index 7934dd3..8eb997f 100755 --- a/util/build-debian-package.sh +++ b/util/build-debian-package.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Copyright (c) 2021-2023 The Hush developers +# Copyright (c) 2021-2024 The Hush developers # Distributed under the GPLv3 software license, see the accompanying # file LICENSE or https://www.gnu.org/licenses/gpl-3.0.en.html # diff --git a/util/build.sh b/util/build.sh index 2b9671a..c5b5325 100755 --- a/util/build.sh +++ b/util/build.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Copyright 2021-2023 Duke Leto and The Hush Developers +# Copyright 2021-2024 Duke Leto and The Hush Developers # Distributed under the GPLv3 software license, see the accompanying # file LICENSE or https://www.gnu.org/licenses/gpl-3.0.en.html # Purpose: Script to build Hush lightwalletd on x86 64-bit arch diff --git a/walletrpc/compact_formats.pb.go b/walletrpc/compact_formats.pb.go index 7949ca7..13dff47 100644 --- a/walletrpc/compact_formats.pb.go +++ b/walletrpc/compact_formats.pb.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2023 Duke Leto and The Hush developers +// Copyright (c) 2019-2024 Duke Leto and The Hush developers // Copyright (c) 2019-2020 The Zcash developers // Distributed under the GPLv3 software license diff --git a/walletrpc/compact_formats.proto b/walletrpc/compact_formats.proto index c55eb1a..9bdf1e2 100644 --- a/walletrpc/compact_formats.proto +++ b/walletrpc/compact_formats.proto @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2023 Duke Leto and The Hush developers +// Copyright (c) 2019-2024 Duke Leto and The Hush developers // Copyright (c) 2019-2020 The Zcash developers // Distributed under the GPLv3 software license syntax = "proto3"; diff --git a/walletrpc/generate.go b/walletrpc/generate.go index 836010f..4ddfcb4 100644 --- a/walletrpc/generate.go +++ b/walletrpc/generate.go @@ -1,3 +1,6 @@ +// Copyright (c) 2019-2024 Duke Leto and The Hush developers +// Copyright (c) 2019-2020 The Zcash developers +// Distributed under the GPLv3 software license package walletrpc //go:generate protoc -I . ./compact_formats.proto --go_out=plugins=grpc:. diff --git a/walletrpc/service.pb.go b/walletrpc/service.pb.go index 69bd825..1dca702 100644 --- a/walletrpc/service.pb.go +++ b/walletrpc/service.pb.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2023 Duke Leto and The Hush developers +// Copyright (c) 2019-2024 Duke Leto and The Hush developers // Copyright (c) 2019-2020 The Zcash developers // Distributed under the GPLv3 software license diff --git a/walletrpc/service.proto b/walletrpc/service.proto index 484f107..e2a7b81 100644 --- a/walletrpc/service.proto +++ b/walletrpc/service.proto @@ -1,4 +1,4 @@ -// Copyright (c) 2019-2023 Duke Leto and The Hush developers +// Copyright (c) 2019-2024 Duke Leto and The Hush developers // Copyright (c) 2019-2020 The Zcash developers // Distributed under the GPLv3 software license syntax = "proto3"; diff --git a/walletrpc/service_grpc.pb.go b/walletrpc/service_grpc.pb.go index 9a07cce..bdc460a 100644 --- a/walletrpc/service_grpc.pb.go +++ b/walletrpc/service_grpc.pb.go @@ -1,3 +1,7 @@ +// Copyright (c) 2019-2024 Duke Leto and The Hush developers +// Copyright (c) 2019-2020 The Zcash developers +// Distributed under the GPLv3 software license + // Code generated by protoc-gen-go-grpc. DO NOT EDIT. package walletrpc