diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 6093436a9..90350287f 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -167,76 +167,6 @@ jobs: cd build/tests ctest -R UnitTests --output-on-failure - build-ubuntu18: - name: Ubuntu 18.04 - runs-on: ubuntu-18.04 - steps: - - uses: actions/checkout@master - - - name: Prepare version - id: setup - run: | - os=ubuntu-18.04 - ccx_version=${GITHUB_SHA::7} - release_name=ccx-cli-"$os"-dev-"$ccx_version" - echo "release_name=${release_name}" >> $GITHUB_OUTPUT - - - name: Install dependencies - run: | - sudo apt-get update - sudo apt-get install -y make cmake gcc g++ libboost-all-dev - - - name: Build - id: build - run: | - mkdir build - cd build - cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=ON -DSTATIC=ON - make -j2 - - - name: Prepare release - run: | - mkdir build/conceal - mv build/src/conceald build/conceal - mv build/src/concealwallet build/conceal - mv build/src/optimizer build/conceal - mv build/src/walletd build/conceal - cp build/tests/*_tests build/conceal - - - name: Upload To GH Artifacts - uses: actions/upload-artifact@v3 - with: - name: ${{ steps.setup.outputs.release_name }} - path: build/conceal - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: core_tests - run: | - cd build/conceal - ./core_tests --generate_and_play_test_data - - - name: difficulty_tests - run: | - cp tests/Difficulty/data.txt build/conceal - cd build/conceal - ./difficulty_tests data.txt - - - name: performance_tests - run: | - cd build/conceal - ./performance_tests - - - name: system_tests - run: | - cd build/conceal - ./system_tests - - - name: unit_tests - run: | - cd build/tests - ctest -R UnitTests --output-on-failure - build-ubuntu20: name: Ubuntu 20.04 runs-on: ubuntu-20.04 diff --git a/.github/workflows/ubuntu18.yml b/.github/workflows/ubuntu18.yml deleted file mode 100644 index 0abbe5d0e..000000000 --- a/.github/workflows/ubuntu18.yml +++ /dev/null @@ -1,51 +0,0 @@ -name: Ubuntu 18.04 - -on: - push: - tags: - - "*" - -jobs: - build-ubuntu18: - name: Ubuntu 18.04 - runs-on: ubuntu-18.04 - steps: - - uses: actions/checkout@master - - - name: Build - id: build - run: | - sudo apt-get update - sudo apt-get install -y libboost-all-dev - build_folder="build/debug" - ccx_version=$(echo "$GITHUB_REF" | sed 's|refs/tags/||') - ccx_ver_folder=$(echo $ccx_version | sed 's/\.//g') - release_name=ccx-cli-ubuntu-1804-v"$ccx_version" - mkdir -p "$build_folder" - cd "$build_folder" - cmake ../.. - make -j2 - mkdir -p "$release_name/$ccx_ver_folder" - exeFiles=() - for f in src/*; do [[ -x $f && -f $f ]] && exeFiles+=( "$f" ); done - cp "${exeFiles[@]}" "$release_name/$ccx_ver_folder" - cd "$release_name" - tar -czf "$release_name".tar.gz "$ccx_ver_folder" - sha256=$(shasum -a 256 "$release_name".tar.gz | awk '{print toupper($1)}') - asset_path="./$build_folder/$release_name/$release_name.tar.gz" - echo "sha256=${sha256}" >> $GITHUB_OUTPUT - echo "release_name=${release_name}.tar.gz" >> $GITHUB_OUTPUT - echo "asset_path=${asset_path}" >> $GITHUB_OUTPUT - echo "ccx_version=${ccx_version}" >> $GITHUB_OUTPUT - - - name: Create Release - uses: softprops/action-gh-release@v0.1.15 - with: - files: ${{ steps.build.outputs.asset_path }} - name: Conceal Core CLI v${{ steps.build.outputs.ccx_version }} - body: | - [Download for Ubuntu 18.04](../../releases/download/${{ steps.build.outputs.ccx_version }}/${{ steps.build.outputs.release_name }}) **${{ steps.build.outputs.release_name }}** - `SHA256 : ${{ steps.build.outputs.sha256 }}` - append_body: true - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/CMakeLists.txt b/CMakeLists.txt index 18c7dbe1c..6fbc3ec15 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.0) include(CheckCXXCompilerFlag) -set(VERSION "6.7.1") +set(VERSION "6.7.2") set(VERSION_BUILD_NO "Trebopala") # Packaged from main commits set(COMMIT 1db6e66) diff --git a/COPYING.md b/COPYING.md index 09ff94ebe..aa6404ce4 100644 --- a/COPYING.md +++ b/COPYING.md @@ -1,7 +1,9 @@ MIT License +Distributed under the MIT/X11 software license http://www.opensource.org/licenses/mit-license.php +Copyright (c) 2017-2023 Conceal Community Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -Copyright (c) 2018-2021 Conceal Network & Conceal Devs +Copyright (c) 2018-2023 Conceal Network & Conceal Devs Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/COPYRIGHT b/COPYRIGHT index 09ff94ebe..aa6404ce4 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -1,7 +1,9 @@ MIT License +Distributed under the MIT/X11 software license http://www.opensource.org/licenses/mit-license.php +Copyright (c) 2017-2023 Conceal Community Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -Copyright (c) 2018-2021 Conceal Network & Conceal Devs +Copyright (c) 2018-2023 Conceal Network & Conceal Devs Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/LICENSE b/LICENSE index 09ff94ebe..aa6404ce4 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,9 @@ MIT License +Distributed under the MIT/X11 software license http://www.opensource.org/licenses/mit-license.php +Copyright (c) 2017-2023 Conceal Community Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -Copyright (c) 2018-2021 Conceal Network & Conceal Devs +Copyright (c) 2018-2023 Conceal Network & Conceal Devs Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 369aebdc7..b34645117 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![GitHub release (latest by date)](https://img.shields.io/github/v/release/ConcealNetwork/conceal-core)](https://github.com/ConcealNetwork/conceal-core/releases/latest) [![Ubuntu 20.04](https://github.com/ConcealNetwork/conceal-core/actions/workflows/ubuntu20.yml/badge.svg)](https://github.com/ConcealNetwork/conceal-core/actions/workflows/ubuntu20.yml) -[![Ubuntu 18.04](https://github.com/ConcealNetwork/conceal-core/actions/workflows/ubuntu18.yml/badge.svg)](https://github.com/ConcealNetwork/conceal-core/actions/workflows/ubuntu18.yml) +[![Ubuntu 22.04](https://github.com/ConcealNetwork/conceal-core/actions/workflows/ubuntu22.yml/badge.svg)](https://github.com/ConcealNetwork/conceal-core/actions/workflows/ubuntu22.yml) [![Windows](https://github.com/ConcealNetwork/conceal-core/actions/workflows/windows.yml/badge.svg)](https://github.com/ConcealNetwork/conceal-core/actions/workflows/windows.yml) [![macOS](https://github.com/ConcealNetwork/conceal-core/actions/workflows/macOS.yml/badge.svg)](https://github.com/ConcealNetwork/conceal-core/actions/workflows/macOS.yml) @@ -165,3 +165,6 @@ If the build is successful the binaries will be located in the `src` folder. #### Special Thanks Special thanks goes out to the developers from Cryptonote, Bytecoin, Ryo, Monero, Forknote, TurtleCoin, Karbo and Masari. + + +Copyright (c) 2017-2023 Conceal Community, Conceal Network & Conceal Devs \ No newline at end of file diff --git a/include/BinaryArray.hpp b/include/BinaryArray.hpp index 56253910b..0094371cf 100644 --- a/include/BinaryArray.hpp +++ b/include/BinaryArray.hpp @@ -1,5 +1,9 @@ -// Copyright (c) 2012-2018, The CryptoNote developers, The Bytecoin developers. -// Licensed under the GNU Lesser General Public License. See LICENSE for details. +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs +// +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. #pragma once diff --git a/include/BlockchainExplorerData.h b/include/BlockchainExplorerData.h index f96bf866c..16ef2f386 100644 --- a/include/BlockchainExplorerData.h +++ b/include/BlockchainExplorerData.h @@ -1,6 +1,6 @@ -// Copyright (c) 2011-2017 The Cryptonote developers +// Copyright (c) 2012-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/CryptoNote.h b/include/CryptoNote.h index 5ad37d96a..cd6da1551 100644 --- a/include/CryptoNote.h +++ b/include/CryptoNote.h @@ -1,6 +1,6 @@ -// Copyright (c) 2011-2017 The Cryptonote developers +// Copyright (c) 2012-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/CryptoTypes.h b/include/CryptoTypes.h index 441c85f62..1c19f94b5 100644 --- a/include/CryptoTypes.h +++ b/include/CryptoTypes.h @@ -1,6 +1,6 @@ -// Copyright (c) 2011-2017 The Cryptonote developers +// Copyright (c) 2012-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/IBlockchainExplorer.h b/include/IBlockchainExplorer.h index 6b1247b56..fb17cda43 100644 --- a/include/IBlockchainExplorer.h +++ b/include/IBlockchainExplorer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/INode.h b/include/INode.h index 1b8f404ed..06160ea63 100644 --- a/include/INode.h +++ b/include/INode.h @@ -1,6 +1,6 @@ -// Copyright (c) 2011-2017 The Cryptonote developers +// Copyright (c) 2012-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/IObservable.h b/include/IObservable.h index 8de490ae2..2249ac395 100644 --- a/include/IObservable.h +++ b/include/IObservable.h @@ -1,6 +1,6 @@ -// Copyright (c) 2011-2017 The Cryptonote developers +// Copyright (c) 2012-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/IStreamSerializable.h b/include/IStreamSerializable.h index 8cfbdf187..71a0b3531 100644 --- a/include/IStreamSerializable.h +++ b/include/IStreamSerializable.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/ITransaction.h b/include/ITransaction.h index 0e96c73a8..9835fe9f9 100644 --- a/include/ITransaction.h +++ b/include/ITransaction.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/ITransfersContainer.h b/include/ITransfersContainer.h index ffe993819..a8e787711 100644 --- a/include/ITransfersContainer.h +++ b/include/ITransfersContainer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/ITransfersSynchronizer.h b/include/ITransfersSynchronizer.h index 5b7bf6873..b4403f6dd 100644 --- a/include/ITransfersSynchronizer.h +++ b/include/ITransfersSynchronizer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/IWallet.h b/include/IWallet.h index 8a899a028..70a5c5cc9 100644 --- a/include/IWallet.h +++ b/include/IWallet.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/IWalletLegacy.h b/include/IWalletLegacy.h index dff2e6b1d..7cea6314c 100644 --- a/include/IWalletLegacy.h +++ b/include/IWalletLegacy.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/BlockchainExplorer/BlockchainExplorer.cpp b/src/BlockchainExplorer/BlockchainExplorer.cpp index 250286850..1e089b551 100644 --- a/src/BlockchainExplorer/BlockchainExplorer.cpp +++ b/src/BlockchainExplorer/BlockchainExplorer.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/BlockchainExplorer/BlockchainExplorer.h b/src/BlockchainExplorer/BlockchainExplorer.h index 63c379306..50f97a195 100644 --- a/src/BlockchainExplorer/BlockchainExplorer.h +++ b/src/BlockchainExplorer/BlockchainExplorer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/BlockchainExplorer/BlockchainExplorerDataBuilder.cpp b/src/BlockchainExplorer/BlockchainExplorerDataBuilder.cpp index c2ca6c196..2d209230f 100644 --- a/src/BlockchainExplorer/BlockchainExplorerDataBuilder.cpp +++ b/src/BlockchainExplorer/BlockchainExplorerDataBuilder.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/BlockchainExplorer/BlockchainExplorerDataBuilder.h b/src/BlockchainExplorer/BlockchainExplorerDataBuilder.h index 6a1debc5f..60d0abcb2 100644 --- a/src/BlockchainExplorer/BlockchainExplorerDataBuilder.h +++ b/src/BlockchainExplorer/BlockchainExplorerDataBuilder.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/BlockchainExplorer/BlockchainExplorerErrors.cpp b/src/BlockchainExplorer/BlockchainExplorerErrors.cpp index 77cc51444..07acdc410 100644 --- a/src/BlockchainExplorer/BlockchainExplorerErrors.cpp +++ b/src/BlockchainExplorer/BlockchainExplorerErrors.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/BlockchainExplorer/BlockchainExplorerErrors.h b/src/BlockchainExplorer/BlockchainExplorerErrors.h index 667d71866..cff1f6017 100644 --- a/src/BlockchainExplorer/BlockchainExplorerErrors.h +++ b/src/BlockchainExplorer/BlockchainExplorerErrors.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/ArrayRef.h b/src/Common/ArrayRef.h index 36a256f92..ff3153867 100644 --- a/src/Common/ArrayRef.h +++ b/src/Common/ArrayRef.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/ArrayView.h b/src/Common/ArrayView.h index a336c687e..9748bf972 100644 --- a/src/Common/ArrayView.h +++ b/src/Common/ArrayView.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/Base58.cpp b/src/Common/Base58.cpp index 4bff569da..4b6ee2698 100644 --- a/src/Common/Base58.cpp +++ b/src/Common/Base58.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/Base58.h b/src/Common/Base58.h index 2d1255295..c497690e1 100644 --- a/src/Common/Base58.h +++ b/src/Common/Base58.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/BlockingQueue.cpp b/src/Common/BlockingQueue.cpp index 0a531c6de..82b052b89 100644 --- a/src/Common/BlockingQueue.cpp +++ b/src/Common/BlockingQueue.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/BlockingQueue.h b/src/Common/BlockingQueue.h index 50260a397..23ed47941 100644 --- a/src/Common/BlockingQueue.h +++ b/src/Common/BlockingQueue.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/CommandLine.cpp b/src/Common/CommandLine.cpp index 4e1add601..16df05bfe 100644 --- a/src/Common/CommandLine.cpp +++ b/src/Common/CommandLine.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/CommandLine.h b/src/Common/CommandLine.h index 4998c8335..e9abcbe02 100644 --- a/src/Common/CommandLine.h +++ b/src/Common/CommandLine.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/ConsoleHandler.cpp b/src/Common/ConsoleHandler.cpp index 37e49611b..38f141c03 100644 --- a/src/Common/ConsoleHandler.cpp +++ b/src/Common/ConsoleHandler.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/ConsoleHandler.h b/src/Common/ConsoleHandler.h index 26bf66c91..d385d4a97 100644 --- a/src/Common/ConsoleHandler.h +++ b/src/Common/ConsoleHandler.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/ConsoleTools.cpp b/src/Common/ConsoleTools.cpp index b3c833d65..d60f68b64 100644 --- a/src/Common/ConsoleTools.cpp +++ b/src/Common/ConsoleTools.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/ConsoleTools.h b/src/Common/ConsoleTools.h index 4177fe210..66105e216 100644 --- a/src/Common/ConsoleTools.h +++ b/src/Common/ConsoleTools.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/DnsTools.h b/src/Common/DnsTools.h index 4eaa96d0a..f4449473e 100644 --- a/src/Common/DnsTools.h +++ b/src/Common/DnsTools.h @@ -1,7 +1,7 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs // Copyright (c) 2018-2020 Karbo developers -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/IInputStream.cpp b/src/Common/IInputStream.cpp index 5af9735da..695a36bc8 100644 --- a/src/Common/IInputStream.cpp +++ b/src/Common/IInputStream.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/IInputStream.h b/src/Common/IInputStream.h index 8e6420bf4..b1b64643b 100644 --- a/src/Common/IInputStream.h +++ b/src/Common/IInputStream.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/IOutputStream.cpp b/src/Common/IOutputStream.cpp index 4568efe3c..4adf1c6f0 100644 --- a/src/Common/IOutputStream.cpp +++ b/src/Common/IOutputStream.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/IOutputStream.h b/src/Common/IOutputStream.h index d577a0a74..455583d8c 100644 --- a/src/Common/IOutputStream.h +++ b/src/Common/IOutputStream.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/Math.cpp b/src/Common/Math.cpp index c12ff7efc..a5cd2ade0 100644 --- a/src/Common/Math.cpp +++ b/src/Common/Math.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/Math.h b/src/Common/Math.h index 0ec5bdbca..b32307122 100644 --- a/src/Common/Math.h +++ b/src/Common/Math.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/MemoryInputStream.cpp b/src/Common/MemoryInputStream.cpp index 35c483db3..93fc01034 100644 --- a/src/Common/MemoryInputStream.cpp +++ b/src/Common/MemoryInputStream.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/MemoryInputStream.h b/src/Common/MemoryInputStream.h index ef75bbef1..c68e2583f 100644 --- a/src/Common/MemoryInputStream.h +++ b/src/Common/MemoryInputStream.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/ObserverManager.h b/src/Common/ObserverManager.h index f1303b310..cac3908ad 100644 --- a/src/Common/ObserverManager.h +++ b/src/Common/ObserverManager.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/PathTools.cpp b/src/Common/PathTools.cpp index 75bcc978f..1ab29561c 100644 --- a/src/Common/PathTools.cpp +++ b/src/Common/PathTools.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/PathTools.h b/src/Common/PathTools.h index 78f3d72fa..7136d88f8 100644 --- a/src/Common/PathTools.h +++ b/src/Common/PathTools.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/ScopeExit.cpp b/src/Common/ScopeExit.cpp index be35ec70b..9b8d29696 100644 --- a/src/Common/ScopeExit.cpp +++ b/src/Common/ScopeExit.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/ScopeExit.h b/src/Common/ScopeExit.h index 6c53380eb..16cc8c3c2 100644 --- a/src/Common/ScopeExit.h +++ b/src/Common/ScopeExit.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/ShuffleGenerator.h b/src/Common/ShuffleGenerator.h index 28b0d134c..c0bf0044c 100644 --- a/src/Common/ShuffleGenerator.h +++ b/src/Common/ShuffleGenerator.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/SignalHandler.cpp b/src/Common/SignalHandler.cpp index dc250dee5..64ba6a52a 100644 --- a/src/Common/SignalHandler.cpp +++ b/src/Common/SignalHandler.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/SignalHandler.h b/src/Common/SignalHandler.h index 04cfa3726..9c8f6a5b3 100644 --- a/src/Common/SignalHandler.h +++ b/src/Common/SignalHandler.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/StdInputStream.cpp b/src/Common/StdInputStream.cpp index 44cf77374..6c8047d22 100644 --- a/src/Common/StdInputStream.cpp +++ b/src/Common/StdInputStream.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/StdInputStream.h b/src/Common/StdInputStream.h index 2d5a13245..1543f6845 100644 --- a/src/Common/StdInputStream.h +++ b/src/Common/StdInputStream.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/StdOutputStream.cpp b/src/Common/StdOutputStream.cpp index f7dc2f2e2..52ec1b8eb 100644 --- a/src/Common/StdOutputStream.cpp +++ b/src/Common/StdOutputStream.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/StdOutputStream.h b/src/Common/StdOutputStream.h index 3ee84170d..a650be169 100644 --- a/src/Common/StdOutputStream.h +++ b/src/Common/StdOutputStream.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/StreamTools.cpp b/src/Common/StreamTools.cpp index 128d39c4e..f9f0b892d 100644 --- a/src/Common/StreamTools.cpp +++ b/src/Common/StreamTools.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/StreamTools.h b/src/Common/StreamTools.h index 1c6c4dac2..84d315c6e 100644 --- a/src/Common/StreamTools.h +++ b/src/Common/StreamTools.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/StringBuffer.h b/src/Common/StringBuffer.h index 5606ce72e..bca10c104 100644 --- a/src/Common/StringBuffer.h +++ b/src/Common/StringBuffer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/StringInputStream.cpp b/src/Common/StringInputStream.cpp index f333bac67..670925fd5 100644 --- a/src/Common/StringInputStream.cpp +++ b/src/Common/StringInputStream.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/StringInputStream.h b/src/Common/StringInputStream.h index 65a6d063e..c791df1e7 100644 --- a/src/Common/StringInputStream.h +++ b/src/Common/StringInputStream.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/StringOutputStream.cpp b/src/Common/StringOutputStream.cpp index 3159cd17d..5eb79335a 100644 --- a/src/Common/StringOutputStream.cpp +++ b/src/Common/StringOutputStream.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/StringOutputStream.h b/src/Common/StringOutputStream.h index a0e6da5fe..7afd3760d 100644 --- a/src/Common/StringOutputStream.h +++ b/src/Common/StringOutputStream.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/StringTools.cpp b/src/Common/StringTools.cpp index 34375b760..17cae2fcd 100644 --- a/src/Common/StringTools.cpp +++ b/src/Common/StringTools.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/StringTools.h b/src/Common/StringTools.h index 89ff42111..3e5363b17 100644 --- a/src/Common/StringTools.h +++ b/src/Common/StringTools.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/StringView.cpp b/src/Common/StringView.cpp index b8d6b88db..7cd90eec8 100644 --- a/src/Common/StringView.cpp +++ b/src/Common/StringView.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/StringView.h b/src/Common/StringView.h index 381fc1809..7c849ba47 100644 --- a/src/Common/StringView.h +++ b/src/Common/StringView.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/Util.cpp b/src/Common/Util.cpp index 96b2ce711..0c8dbd51e 100644 --- a/src/Common/Util.cpp +++ b/src/Common/Util.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/Util.h b/src/Common/Util.h index ab29109c6..9f6d654ac 100644 --- a/src/Common/Util.h +++ b/src/Common/Util.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/Varint.h b/src/Common/Varint.h index 7eb92f107..e7fbb92b5 100644 --- a/src/Common/Varint.h +++ b/src/Common/Varint.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/VectorOutputStream.cpp b/src/Common/VectorOutputStream.cpp index 01e9b6c59..d4af98a7e 100644 --- a/src/Common/VectorOutputStream.cpp +++ b/src/Common/VectorOutputStream.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/VectorOutputStream.h b/src/Common/VectorOutputStream.h index fd19701f4..f13914ff2 100644 --- a/src/Common/VectorOutputStream.h +++ b/src/Common/VectorOutputStream.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/int-util.h b/src/Common/int-util.h index f9e818333..3021876ce 100644 --- a/src/Common/int-util.h +++ b/src/Common/int-util.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/pod-class.h b/src/Common/pod-class.h index b7e064189..81b5b837e 100644 --- a/src/Common/pod-class.h +++ b/src/Common/pod-class.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Common/static_assert.h b/src/Common/static_assert.h index 482cc5c24..d7811c104 100644 --- a/src/Common/static_assert.h +++ b/src/Common/static_assert.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/ConcealWallet/ClientHelper.cpp b/src/ConcealWallet/ClientHelper.cpp index 081908330..e0ba3fa5b 100644 --- a/src/ConcealWallet/ClientHelper.cpp +++ b/src/ConcealWallet/ClientHelper.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/ConcealWallet/ClientHelper.h b/src/ConcealWallet/ClientHelper.h index c94af5daf..77edc5fb2 100644 --- a/src/ConcealWallet/ClientHelper.h +++ b/src/ConcealWallet/ClientHelper.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/ConcealWallet/ConcealWallet.cpp b/src/ConcealWallet/ConcealWallet.cpp index 6b116604f..49626e959 100644 --- a/src/ConcealWallet/ConcealWallet.cpp +++ b/src/ConcealWallet/ConcealWallet.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/ConcealWallet/ConcealWallet.h b/src/ConcealWallet/ConcealWallet.h index 02aedb0c2..f5add810f 100644 --- a/src/ConcealWallet/ConcealWallet.h +++ b/src/ConcealWallet/ConcealWallet.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/ConcealWallet/Const.h b/src/ConcealWallet/Const.h index cd2d6e55d..bbb052866 100644 --- a/src/ConcealWallet/Const.h +++ b/src/ConcealWallet/Const.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/ConcealWallet/PasswordContainer.cpp b/src/ConcealWallet/PasswordContainer.cpp index 84f756fb3..e05400ade 100644 --- a/src/ConcealWallet/PasswordContainer.cpp +++ b/src/ConcealWallet/PasswordContainer.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/ConcealWallet/PasswordContainer.h b/src/ConcealWallet/PasswordContainer.h index 7f219407b..c51481961 100644 --- a/src/ConcealWallet/PasswordContainer.h +++ b/src/ConcealWallet/PasswordContainer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/ConcealWallet/TransferCmd.cpp b/src/ConcealWallet/TransferCmd.cpp index 5f6ea3a28..5abfef8a6 100644 --- a/src/ConcealWallet/TransferCmd.cpp +++ b/src/ConcealWallet/TransferCmd.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/ConcealWallet/TransferCmd.h b/src/ConcealWallet/TransferCmd.h index cb49042b7..30b3cce94 100644 --- a/src/ConcealWallet/TransferCmd.h +++ b/src/ConcealWallet/TransferCmd.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/ConcealWallet/main.cpp b/src/ConcealWallet/main.cpp index 55b8f7590..1c21ee0d4 100644 --- a/src/ConcealWallet/main.cpp +++ b/src/ConcealWallet/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteConfig.h b/src/CryptoNoteConfig.h index a3f47d3fe..032f0e91e 100644 --- a/src/CryptoNoteConfig.h +++ b/src/CryptoNoteConfig.h @@ -1,6 +1,6 @@ -// Copyright (c) 2011-2017 The Cryptonote Developers +// Copyright (c) 2012-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // // Distributed under the MIT/X11 software license, see the accompanying @@ -356,26 +356,39 @@ namespace cn {1190000, "8b6fd535bec46f3b28772e82e210fd1988b1b4704801b75712c6af17b9a09a2b"}, {1200000, "9434fdddd2e7521fa92aea42f11a30d364ccc413074993b2aacb31987cca02da"}, {1210000, "d424b084320d8c138dca36de8bb2dba40e142f9fe6785f50b39c80543a653c4e"}, - {1220000, "9dad391d2c819b482d9a9408db63e480726597f21d180f9a590f3c20f2c9fbc8"} + {1220000, "9dad391d2c819b482d9a9408db63e480726597f21d180f9a590f3c20f2c9fbc8"}, + {1230000, "3c0fda332a0a1d0d9329087430960fd6506f7d01cf14cd027567074c3c9b79ef"}, + {1240000, "00a5a0b11c0f20fd30e98881dcf7c2246a67aea8529c71400f3bae4658214ce2"}, + {1250000, "786f2af5d5ff526cfb0330baed655d2a7bafbe5bcafa10759b17d6cd9cf9ee1c"}, + {1260000, "0aded508302e4987d6a585990e2b1f27b81582dd0ccff3fc40ca0779daaa7da1"}, + {1270000, "0b8a495699b85eae4e115b84259b056d9084025a0e9b11b67cca1c47552f0998"}, + {1280000, "544b164dfc4e19221e23e427fe821c812dda2a41fe5eee1915065f99a3c707d2"}, + {1290000, "7844314fdd7e70ed38def90377339e249108e328bb94820f070c6aa2a787abf9"}, + {1300000, "68e1ce32210bc1cd41ea26e64382f39c5302bf251273cc6fd35d80a3c19df815"}, + {1310000, "64aab7bbc148131f11479e74bbbd74c67e6ee45312bd6e72f5b68d5d1d383e46"} }; - const std::initializer_list TESTNET_CHECKPOINTS = { - {0, "850ac16022f4dddab624fad3f9049dba80592c8ea51a5dff19fefeb386e536b1"}, - {25000, "bdde29c10211c911947e1e0d602309e95fb915372f3317690c7860ef451a78e7"}, - {50000, "ceb6c3e01ccd832779060a65a348ef38cab067bc951df11aa38332b8c2b7d299"}, - {75000, "cf2e2c171107e05aa9932e7f66a3df5117e5c1a4b084bb9b0c9c79300ebb82ce"}, - {100000, "a2c7179f5e7ea541ba8ed929044600b9cbf2aa20e5cf1d29cb93439fda4431ba"}, - {125000, "8a1737f2eee125776dff01288ada59ced95f9ab3a3fcbbed9c32a3dc20cad033"}, - {150000, "ffacefc66ca2a8e8f86cb857682568f1ba6280cd7d0363d4c322947ec32ccfe7"}, - {175000, "a053a4d65eeabafdb2766d1d70969c81849d6f00d9bd2bc88913c578bc462336"}, - {200000, "64fdf3fc7cb0cf0596624370324c898dc70f6792f654490fad2a2211ad07fd5f"}, - {225000, "a39f3d7a0891f9f58b6419d61cd954411fbff93e122205d7f46ecec9948470eb"}, - {250000, "8cdecb3de4ba342e4a817cbd02e81238574391864182711b193c05403eb1c87d"}, - {275000, "61cab9e0d8133e58ae8544c320e43b433945ae32d9599df8eb41c0398c1377b8"}, - {300000, "48ee76f5c16deb56f5d4e5acd632c78f8d5b71b1371514459066c224e4cd82dc"}, - {325000, "2c2566bdabcd1ae1fc328bdeb6b55da56414847101e767a808cf9d9e2e4a1358"}, - {350000, "14aaebe52ec107fac28179ae1056821c112932e74bfa971e9040730b9a797b09"} - }; + const std::initializer_list TESTNET_CHECKPOINTS = { + {0, "850ac16022f4dddab624fad3f9049dba80592c8ea51a5dff19fefeb386e536b1"}, + {25000, "bdde29c10211c911947e1e0d602309e95fb915372f3317690c7860ef451a78e7"}, + {50000, "ceb6c3e01ccd832779060a65a348ef38cab067bc951df11aa38332b8c2b7d299"}, + {75000, "cf2e2c171107e05aa9932e7f66a3df5117e5c1a4b084bb9b0c9c79300ebb82ce"}, + {100000, "a2c7179f5e7ea541ba8ed929044600b9cbf2aa20e5cf1d29cb93439fda4431ba"}, + {125000, "8a1737f2eee125776dff01288ada59ced95f9ab3a3fcbbed9c32a3dc20cad033"}, + {150000, "ffacefc66ca2a8e8f86cb857682568f1ba6280cd7d0363d4c322947ec32ccfe7"}, + {175000, "a053a4d65eeabafdb2766d1d70969c81849d6f00d9bd2bc88913c578bc462336"}, + {200000, "64fdf3fc7cb0cf0596624370324c898dc70f6792f654490fad2a2211ad07fd5f"}, + {225000, "a39f3d7a0891f9f58b6419d61cd954411fbff93e122205d7f46ecec9948470eb"}, + {250000, "8cdecb3de4ba342e4a817cbd02e81238574391864182711b193c05403eb1c87d"}, + {275000, "61cab9e0d8133e58ae8544c320e43b433945ae32d9599df8eb41c0398c1377b8"}, + {300000, "48ee76f5c16deb56f5d4e5acd632c78f8d5b71b1371514459066c224e4cd82dc"}, + {325000, "2c2566bdabcd1ae1fc328bdeb6b55da56414847101e767a808cf9d9e2e4a1358"}, + {350000, "14aaebe52ec107fac28179ae1056821c112932e74bfa971e9040730b9a797b09"}, + {375000, "11858ed98655337da5f959194e96f4405a5811bb96afdb8ad1e450a62face3c8"}, + {400000, "1de31d8d458e0b0355fd7ff14ab757e6991b1b66c5e63156849891118843bc26"}, + {425000, "63c2ff4cb122d76acb4c8939996d2486fcf6d347f801ad2b3b7356ffab0f1b85"}, + {450000, "aa34be98d020af37faf6b78ffe51561a3c001b0322f726da75574e9c8c86dc7b"} +}; } // namespace cn diff --git a/src/CryptoNoteCore/Account.cpp b/src/CryptoNoteCore/Account.cpp index 7d325e0a3..0a37e2b75 100644 --- a/src/CryptoNoteCore/Account.cpp +++ b/src/CryptoNoteCore/Account.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/Account.h b/src/CryptoNoteCore/Account.h index c33d464c7..f0d51e21f 100644 --- a/src/CryptoNoteCore/Account.h +++ b/src/CryptoNoteCore/Account.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/BlockIndex.cpp b/src/CryptoNoteCore/BlockIndex.cpp index be08bd0b5..243170f26 100644 --- a/src/CryptoNoteCore/BlockIndex.cpp +++ b/src/CryptoNoteCore/BlockIndex.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/BlockIndex.h b/src/CryptoNoteCore/BlockIndex.h index 91108b17f..04d8b5ce5 100644 --- a/src/CryptoNoteCore/BlockIndex.h +++ b/src/CryptoNoteCore/BlockIndex.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/Blockchain.cpp b/src/CryptoNoteCore/Blockchain.cpp index dc9cd8296..e97e5a1b6 100644 --- a/src/CryptoNoteCore/Blockchain.cpp +++ b/src/CryptoNoteCore/Blockchain.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs // Copyright (c) 2018-2020 Karbo developers -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/Blockchain.h b/src/CryptoNoteCore/Blockchain.h index 130757214..e909bf146 100644 --- a/src/CryptoNoteCore/Blockchain.h +++ b/src/CryptoNoteCore/Blockchain.h @@ -1,7 +1,7 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs // Copyright (c) 2018-2020 Karbo developers -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/BlockchainIndices.cpp b/src/CryptoNoteCore/BlockchainIndices.cpp index 593a2ac3b..a23a733ce 100644 --- a/src/CryptoNoteCore/BlockchainIndices.cpp +++ b/src/CryptoNoteCore/BlockchainIndices.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/BlockchainIndices.h b/src/CryptoNoteCore/BlockchainIndices.h index 956245c07..dcf7d309e 100644 --- a/src/CryptoNoteCore/BlockchainIndices.h +++ b/src/CryptoNoteCore/BlockchainIndices.h @@ -1,7 +1,7 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs // Copyright (c) 2018-2020 Karbo developers -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/BlockchainMessages.cpp b/src/CryptoNoteCore/BlockchainMessages.cpp index 67aadaa71..093dc14df 100644 --- a/src/CryptoNoteCore/BlockchainMessages.cpp +++ b/src/CryptoNoteCore/BlockchainMessages.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/BlockchainMessages.h b/src/CryptoNoteCore/BlockchainMessages.h index f6f07606e..fbafb1c56 100644 --- a/src/CryptoNoteCore/BlockchainMessages.h +++ b/src/CryptoNoteCore/BlockchainMessages.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/Checkpoints.cpp b/src/CryptoNoteCore/Checkpoints.cpp index 5e00986c3..a75d6dce1 100644 --- a/src/CryptoNoteCore/Checkpoints.cpp +++ b/src/CryptoNoteCore/Checkpoints.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Copyright (c) 2016-2019, The Karbo developers diff --git a/src/CryptoNoteCore/Checkpoints.h b/src/CryptoNoteCore/Checkpoints.h index df017a8e1..6de13aca1 100644 --- a/src/CryptoNoteCore/Checkpoints.h +++ b/src/CryptoNoteCore/Checkpoints.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/Core.cpp b/src/CryptoNoteCore/Core.cpp index ad8921a50..99c3eb6a8 100644 --- a/src/CryptoNoteCore/Core.cpp +++ b/src/CryptoNoteCore/Core.cpp @@ -2,7 +2,7 @@ // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs // Copyright (c) 2018-2019 The TurtleCoin developers // Copyright (c) 2016-2020 The Karbo developers -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/Core.h b/src/CryptoNoteCore/Core.h index 3b266c337..0be9257ff 100644 --- a/src/CryptoNoteCore/Core.h +++ b/src/CryptoNoteCore/Core.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/CoreConfig.cpp b/src/CryptoNoteCore/CoreConfig.cpp index 1cc3a94b5..adbc7e8a6 100644 --- a/src/CryptoNoteCore/CoreConfig.cpp +++ b/src/CryptoNoteCore/CoreConfig.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/CoreConfig.h b/src/CryptoNoteCore/CoreConfig.h index 00dd5c5e7..55a9ee663 100644 --- a/src/CryptoNoteCore/CoreConfig.h +++ b/src/CryptoNoteCore/CoreConfig.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/CryptoNoteBasic.cpp b/src/CryptoNoteCore/CryptoNoteBasic.cpp index 315aaf436..fa528531c 100644 --- a/src/CryptoNoteCore/CryptoNoteBasic.cpp +++ b/src/CryptoNoteCore/CryptoNoteBasic.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/CryptoNoteBasic.h b/src/CryptoNoteCore/CryptoNoteBasic.h index 1012dd471..fc8bc916e 100644 --- a/src/CryptoNoteCore/CryptoNoteBasic.h +++ b/src/CryptoNoteCore/CryptoNoteBasic.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/CryptoNoteBasicImpl.cpp b/src/CryptoNoteCore/CryptoNoteBasicImpl.cpp index 1f862b80c..d5b6bc926 100644 --- a/src/CryptoNoteCore/CryptoNoteBasicImpl.cpp +++ b/src/CryptoNoteCore/CryptoNoteBasicImpl.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/CryptoNoteBasicImpl.h b/src/CryptoNoteCore/CryptoNoteBasicImpl.h index 5ac943b42..624d941a4 100644 --- a/src/CryptoNoteCore/CryptoNoteBasicImpl.h +++ b/src/CryptoNoteCore/CryptoNoteBasicImpl.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/CryptoNoteFormatUtils.cpp b/src/CryptoNoteCore/CryptoNoteFormatUtils.cpp index d2b01c141..be20463c2 100644 --- a/src/CryptoNoteCore/CryptoNoteFormatUtils.cpp +++ b/src/CryptoNoteCore/CryptoNoteFormatUtils.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/CryptoNoteFormatUtils.h b/src/CryptoNoteCore/CryptoNoteFormatUtils.h index 67e979037..09be00d31 100644 --- a/src/CryptoNoteCore/CryptoNoteFormatUtils.h +++ b/src/CryptoNoteCore/CryptoNoteFormatUtils.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/CryptoNoteSerialization.cpp b/src/CryptoNoteCore/CryptoNoteSerialization.cpp index 41eceb798..d54df1605 100644 --- a/src/CryptoNoteCore/CryptoNoteSerialization.cpp +++ b/src/CryptoNoteCore/CryptoNoteSerialization.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/CryptoNoteSerialization.h b/src/CryptoNoteCore/CryptoNoteSerialization.h index c52106ee6..ae892caca 100644 --- a/src/CryptoNoteCore/CryptoNoteSerialization.h +++ b/src/CryptoNoteCore/CryptoNoteSerialization.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/CryptoNoteStatInfo.h b/src/CryptoNoteCore/CryptoNoteStatInfo.h index ac35b87f5..5452a0380 100644 --- a/src/CryptoNoteCore/CryptoNoteStatInfo.h +++ b/src/CryptoNoteCore/CryptoNoteStatInfo.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/CryptoNoteTools.cpp b/src/CryptoNoteCore/CryptoNoteTools.cpp index 0fd0b5a72..0a36f1711 100644 --- a/src/CryptoNoteCore/CryptoNoteTools.cpp +++ b/src/CryptoNoteCore/CryptoNoteTools.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/CryptoNoteTools.h b/src/CryptoNoteCore/CryptoNoteTools.h index 82dda8a99..052c81424 100644 --- a/src/CryptoNoteCore/CryptoNoteTools.h +++ b/src/CryptoNoteCore/CryptoNoteTools.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/Currency.cpp b/src/CryptoNoteCore/Currency.cpp index 3f3edca8b..b493e9821 100644 --- a/src/CryptoNoteCore/Currency.cpp +++ b/src/CryptoNoteCore/Currency.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // // Distributed under the MIT/X11 software license, see the accompanying diff --git a/src/CryptoNoteCore/Currency.h b/src/CryptoNoteCore/Currency.h index 16b20fed4..a81f91c43 100644 --- a/src/CryptoNoteCore/Currency.h +++ b/src/CryptoNoteCore/Currency.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/DepositIndex.cpp b/src/CryptoNoteCore/DepositIndex.cpp index 5c21239b0..29979c050 100644 --- a/src/CryptoNoteCore/DepositIndex.cpp +++ b/src/CryptoNoteCore/DepositIndex.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/DepositIndex.h b/src/CryptoNoteCore/DepositIndex.h index dfddb30c7..b98022670 100644 --- a/src/CryptoNoteCore/DepositIndex.h +++ b/src/CryptoNoteCore/DepositIndex.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/Difficulty.cpp b/src/CryptoNoteCore/Difficulty.cpp index 8df5749fb..1e9f23f07 100644 --- a/src/CryptoNoteCore/Difficulty.cpp +++ b/src/CryptoNoteCore/Difficulty.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/Difficulty.h b/src/CryptoNoteCore/Difficulty.h index 92e740ffa..b674c4e7e 100644 --- a/src/CryptoNoteCore/Difficulty.h +++ b/src/CryptoNoteCore/Difficulty.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/IBlock.cpp b/src/CryptoNoteCore/IBlock.cpp index f047c4764..ce4172d21 100644 --- a/src/CryptoNoteCore/IBlock.cpp +++ b/src/CryptoNoteCore/IBlock.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/IBlock.h b/src/CryptoNoteCore/IBlock.h index 0fe17f3ee..f08f2604d 100644 --- a/src/CryptoNoteCore/IBlock.h +++ b/src/CryptoNoteCore/IBlock.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/IBlockchainStorageObserver.h b/src/CryptoNoteCore/IBlockchainStorageObserver.h index 82dffd981..13dba547d 100644 --- a/src/CryptoNoteCore/IBlockchainStorageObserver.h +++ b/src/CryptoNoteCore/IBlockchainStorageObserver.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/ICore.h b/src/CryptoNoteCore/ICore.h index 5ac97a9fa..91b883c14 100644 --- a/src/CryptoNoteCore/ICore.h +++ b/src/CryptoNoteCore/ICore.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/ICoreObserver.h b/src/CryptoNoteCore/ICoreObserver.h index 4402feef3..2bfc7a43f 100644 --- a/src/CryptoNoteCore/ICoreObserver.h +++ b/src/CryptoNoteCore/ICoreObserver.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/IMinerHandler.h b/src/CryptoNoteCore/IMinerHandler.h index 0f0bdd074..ee85b85d9 100644 --- a/src/CryptoNoteCore/IMinerHandler.h +++ b/src/CryptoNoteCore/IMinerHandler.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/ITimeProvider.cpp b/src/CryptoNoteCore/ITimeProvider.cpp index b6b177b51..bd00ba5bb 100644 --- a/src/CryptoNoteCore/ITimeProvider.cpp +++ b/src/CryptoNoteCore/ITimeProvider.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/ITimeProvider.h b/src/CryptoNoteCore/ITimeProvider.h index d7bce5379..24cbef543 100644 --- a/src/CryptoNoteCore/ITimeProvider.h +++ b/src/CryptoNoteCore/ITimeProvider.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/ITransactionValidator.h b/src/CryptoNoteCore/ITransactionValidator.h index 0cad836ba..73a9d9588 100644 --- a/src/CryptoNoteCore/ITransactionValidator.h +++ b/src/CryptoNoteCore/ITransactionValidator.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/ITxPoolObserver.h b/src/CryptoNoteCore/ITxPoolObserver.h index 6b41a8cc5..7dfe5bc25 100644 --- a/src/CryptoNoteCore/ITxPoolObserver.h +++ b/src/CryptoNoteCore/ITxPoolObserver.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/IntrusiveLinkedList.h b/src/CryptoNoteCore/IntrusiveLinkedList.h index 8f21f0ddb..11863961b 100644 --- a/src/CryptoNoteCore/IntrusiveLinkedList.h +++ b/src/CryptoNoteCore/IntrusiveLinkedList.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/InvestmentIndex.cpp b/src/CryptoNoteCore/InvestmentIndex.cpp index 13aa9659f..709e071f8 100644 --- a/src/CryptoNoteCore/InvestmentIndex.cpp +++ b/src/CryptoNoteCore/InvestmentIndex.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/InvestmentIndex.h b/src/CryptoNoteCore/InvestmentIndex.h index 59810ccf3..7692924dd 100644 --- a/src/CryptoNoteCore/InvestmentIndex.h +++ b/src/CryptoNoteCore/InvestmentIndex.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/MessageQueue.h b/src/CryptoNoteCore/MessageQueue.h index 874e5b6f8..1be2bdb41 100644 --- a/src/CryptoNoteCore/MessageQueue.h +++ b/src/CryptoNoteCore/MessageQueue.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/Miner.cpp b/src/CryptoNoteCore/Miner.cpp index d3069e22f..b41ae5811 100644 --- a/src/CryptoNoteCore/Miner.cpp +++ b/src/CryptoNoteCore/Miner.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/Miner.h b/src/CryptoNoteCore/Miner.h index cf5ad24d7..2e85efaaf 100644 --- a/src/CryptoNoteCore/Miner.h +++ b/src/CryptoNoteCore/Miner.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/MinerConfig.cpp b/src/CryptoNoteCore/MinerConfig.cpp index 8482ca2f2..5ccd89f10 100644 --- a/src/CryptoNoteCore/MinerConfig.cpp +++ b/src/CryptoNoteCore/MinerConfig.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/MinerConfig.h b/src/CryptoNoteCore/MinerConfig.h index 2cf7b8ae3..f0e7f9d90 100644 --- a/src/CryptoNoteCore/MinerConfig.h +++ b/src/CryptoNoteCore/MinerConfig.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/OnceInInterval.h b/src/CryptoNoteCore/OnceInInterval.h index 2095ef953..784c291b3 100644 --- a/src/CryptoNoteCore/OnceInInterval.h +++ b/src/CryptoNoteCore/OnceInInterval.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/SwappedMap.cpp b/src/CryptoNoteCore/SwappedMap.cpp index 4c2e70ac0..46b133481 100644 --- a/src/CryptoNoteCore/SwappedMap.cpp +++ b/src/CryptoNoteCore/SwappedMap.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/SwappedMap.h b/src/CryptoNoteCore/SwappedMap.h index 7072b9dac..b46a6ec59 100644 --- a/src/CryptoNoteCore/SwappedMap.h +++ b/src/CryptoNoteCore/SwappedMap.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/SwappedVector.cpp b/src/CryptoNoteCore/SwappedVector.cpp index bccbc26b2..52bc675f7 100644 --- a/src/CryptoNoteCore/SwappedVector.cpp +++ b/src/CryptoNoteCore/SwappedVector.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/SwappedVector.h b/src/CryptoNoteCore/SwappedVector.h index 64a11c481..54356d4c4 100644 --- a/src/CryptoNoteCore/SwappedVector.h +++ b/src/CryptoNoteCore/SwappedVector.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/Transaction.cpp b/src/CryptoNoteCore/Transaction.cpp index ff2c194e7..56ddc62b5 100644 --- a/src/CryptoNoteCore/Transaction.cpp +++ b/src/CryptoNoteCore/Transaction.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/TransactionApi.h b/src/CryptoNoteCore/TransactionApi.h index 3513490d0..ae5799ac5 100644 --- a/src/CryptoNoteCore/TransactionApi.h +++ b/src/CryptoNoteCore/TransactionApi.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/TransactionApiExtra.h b/src/CryptoNoteCore/TransactionApiExtra.h index 21c483d8d..1ab790141 100644 --- a/src/CryptoNoteCore/TransactionApiExtra.h +++ b/src/CryptoNoteCore/TransactionApiExtra.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/TransactionExtra.cpp b/src/CryptoNoteCore/TransactionExtra.cpp index 6581443d4..43f092d62 100644 --- a/src/CryptoNoteCore/TransactionExtra.cpp +++ b/src/CryptoNoteCore/TransactionExtra.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/TransactionExtra.h b/src/CryptoNoteCore/TransactionExtra.h index 404aefa45..064bf7fd8 100644 --- a/src/CryptoNoteCore/TransactionExtra.h +++ b/src/CryptoNoteCore/TransactionExtra.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying diff --git a/src/CryptoNoteCore/TransactionPool.cpp b/src/CryptoNoteCore/TransactionPool.cpp index ea75c48e7..dc2c8a24d 100644 --- a/src/CryptoNoteCore/TransactionPool.cpp +++ b/src/CryptoNoteCore/TransactionPool.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/TransactionPool.h b/src/CryptoNoteCore/TransactionPool.h index 92064ea53..88c4a9069 100644 --- a/src/CryptoNoteCore/TransactionPool.h +++ b/src/CryptoNoteCore/TransactionPool.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/TransactionPrefixImpl.cpp b/src/CryptoNoteCore/TransactionPrefixImpl.cpp index 8435f50cb..6e5502113 100644 --- a/src/CryptoNoteCore/TransactionPrefixImpl.cpp +++ b/src/CryptoNoteCore/TransactionPrefixImpl.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/TransactionUtils.cpp b/src/CryptoNoteCore/TransactionUtils.cpp index c89ef3cb3..0c54aaf21 100644 --- a/src/CryptoNoteCore/TransactionUtils.cpp +++ b/src/CryptoNoteCore/TransactionUtils.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/TransactionUtils.h b/src/CryptoNoteCore/TransactionUtils.h index 944f4113f..0fa334e5b 100644 --- a/src/CryptoNoteCore/TransactionUtils.h +++ b/src/CryptoNoteCore/TransactionUtils.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/UpgradeDetector.cpp b/src/CryptoNoteCore/UpgradeDetector.cpp index bf2ced123..0e171030f 100644 --- a/src/CryptoNoteCore/UpgradeDetector.cpp +++ b/src/CryptoNoteCore/UpgradeDetector.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/UpgradeDetector.h b/src/CryptoNoteCore/UpgradeDetector.h index 9c432da59..719559e2d 100644 --- a/src/CryptoNoteCore/UpgradeDetector.h +++ b/src/CryptoNoteCore/UpgradeDetector.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteCore/VerificationContext.h b/src/CryptoNoteCore/VerificationContext.h index 05802f7eb..26134a067 100644 --- a/src/CryptoNoteCore/VerificationContext.h +++ b/src/CryptoNoteCore/VerificationContext.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteProtocol/CryptoNoteProtocolDefinitions.h b/src/CryptoNoteProtocol/CryptoNoteProtocolDefinitions.h index c33fab457..b9f626115 100644 --- a/src/CryptoNoteProtocol/CryptoNoteProtocolDefinitions.h +++ b/src/CryptoNoteProtocol/CryptoNoteProtocolDefinitions.h @@ -2,7 +2,7 @@ // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs // Copyright (c) 2018-2019 The TurtleCoin developers // Copyright (c) 2016-2020 The Karbo developers -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteProtocol/CryptoNoteProtocolHandler.cpp b/src/CryptoNoteProtocol/CryptoNoteProtocolHandler.cpp index b7b932775..beea9661f 100644 --- a/src/CryptoNoteProtocol/CryptoNoteProtocolHandler.cpp +++ b/src/CryptoNoteProtocol/CryptoNoteProtocolHandler.cpp @@ -2,7 +2,7 @@ // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs // Copyright (c) 2018-2019 The TurtleCoin developers // Copyright (c) 2016-2020 The Karbo developers -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteProtocol/CryptoNoteProtocolHandler.h b/src/CryptoNoteProtocol/CryptoNoteProtocolHandler.h index e1f3fc0f7..ccb1d1bfa 100644 --- a/src/CryptoNoteProtocol/CryptoNoteProtocolHandler.h +++ b/src/CryptoNoteProtocol/CryptoNoteProtocolHandler.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteProtocol/CryptoNoteProtocolHandlerCommon.h b/src/CryptoNoteProtocol/CryptoNoteProtocolHandlerCommon.h index baadb0c94..2c38828d3 100644 --- a/src/CryptoNoteProtocol/CryptoNoteProtocolHandlerCommon.h +++ b/src/CryptoNoteProtocol/CryptoNoteProtocolHandlerCommon.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteProtocol/ICryptoNoteProtocolObserver.h b/src/CryptoNoteProtocol/ICryptoNoteProtocolObserver.h index 7b5b540b8..f887a175b 100644 --- a/src/CryptoNoteProtocol/ICryptoNoteProtocolObserver.h +++ b/src/CryptoNoteProtocol/ICryptoNoteProtocolObserver.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/CryptoNoteProtocol/ICryptoNoteProtocolQuery.h b/src/CryptoNoteProtocol/ICryptoNoteProtocolQuery.h index 39c44a8dd..f3db22ebc 100644 --- a/src/CryptoNoteProtocol/ICryptoNoteProtocolQuery.h +++ b/src/CryptoNoteProtocol/ICryptoNoteProtocolQuery.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Daemon/Daemon.cpp b/src/Daemon/Daemon.cpp index e86a98766..d805957ad 100644 --- a/src/Daemon/Daemon.cpp +++ b/src/Daemon/Daemon.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2016-2022, The Karbo developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Daemon/DaemonCommandsHandler.cpp b/src/Daemon/DaemonCommandsHandler.cpp index 0573e0f6a..ccb13ac84 100644 --- a/src/Daemon/DaemonCommandsHandler.cpp +++ b/src/Daemon/DaemonCommandsHandler.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // // Distributed under the MIT/X11 software license, see the accompanying diff --git a/src/Daemon/DaemonCommandsHandler.h b/src/Daemon/DaemonCommandsHandler.h index d27f254bf..f7bbc7088 100644 --- a/src/Daemon/DaemonCommandsHandler.h +++ b/src/Daemon/DaemonCommandsHandler.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // // Distributed under the MIT/X11 software license, see the accompanying diff --git a/src/HTTP/HttpParser.cpp b/src/HTTP/HttpParser.cpp index b118e8802..50c7fe0a5 100644 --- a/src/HTTP/HttpParser.cpp +++ b/src/HTTP/HttpParser.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/HTTP/HttpParser.h b/src/HTTP/HttpParser.h index 9794b013d..6d9fc33d7 100644 --- a/src/HTTP/HttpParser.h +++ b/src/HTTP/HttpParser.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/HTTP/HttpParserErrorCodes.cpp b/src/HTTP/HttpParserErrorCodes.cpp index c81d50767..908d5931a 100644 --- a/src/HTTP/HttpParserErrorCodes.cpp +++ b/src/HTTP/HttpParserErrorCodes.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/HTTP/HttpParserErrorCodes.h b/src/HTTP/HttpParserErrorCodes.h index 0e2591d25..079a81c21 100644 --- a/src/HTTP/HttpParserErrorCodes.h +++ b/src/HTTP/HttpParserErrorCodes.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/HTTP/HttpRequest.cpp b/src/HTTP/HttpRequest.cpp index 15bdd87a8..7cd0630f1 100644 --- a/src/HTTP/HttpRequest.cpp +++ b/src/HTTP/HttpRequest.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/HTTP/HttpRequest.h b/src/HTTP/HttpRequest.h index d4f1236a3..0671c991d 100644 --- a/src/HTTP/HttpRequest.h +++ b/src/HTTP/HttpRequest.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/HTTP/HttpResponse.cpp b/src/HTTP/HttpResponse.cpp index c3e715453..eab41f88e 100644 --- a/src/HTTP/HttpResponse.cpp +++ b/src/HTTP/HttpResponse.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/HTTP/HttpResponse.h b/src/HTTP/HttpResponse.h index 451cdcf3b..a3c7492cb 100644 --- a/src/HTTP/HttpResponse.h +++ b/src/HTTP/HttpResponse.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/InProcessNode/InProcessNode.cpp b/src/InProcessNode/InProcessNode.cpp index c47c2103d..e72be2730 100644 --- a/src/InProcessNode/InProcessNode.cpp +++ b/src/InProcessNode/InProcessNode.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/InProcessNode/InProcessNode.h b/src/InProcessNode/InProcessNode.h index f35bbb768..a9b926875 100644 --- a/src/InProcessNode/InProcessNode.h +++ b/src/InProcessNode/InProcessNode.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/InProcessNode/InProcessNodeErrors.cpp b/src/InProcessNode/InProcessNodeErrors.cpp index 4e73272f7..d2a68ff1c 100644 --- a/src/InProcessNode/InProcessNodeErrors.cpp +++ b/src/InProcessNode/InProcessNodeErrors.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/InProcessNode/InProcessNodeErrors.h b/src/InProcessNode/InProcessNodeErrors.h index f86083b35..a1c34f508 100644 --- a/src/InProcessNode/InProcessNodeErrors.h +++ b/src/InProcessNode/InProcessNodeErrors.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/JsonRpcServer/JsonRpcServer.cpp b/src/JsonRpcServer/JsonRpcServer.cpp index 9fefe20a8..4b14eb12d 100644 --- a/src/JsonRpcServer/JsonRpcServer.cpp +++ b/src/JsonRpcServer/JsonRpcServer.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/JsonRpcServer/JsonRpcServer.h b/src/JsonRpcServer/JsonRpcServer.h index 1a9e9fd12..79219dc16 100644 --- a/src/JsonRpcServer/JsonRpcServer.h +++ b/src/JsonRpcServer/JsonRpcServer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Logging/CommonLogger.cpp b/src/Logging/CommonLogger.cpp index 99a54c9de..7a224ff94 100644 --- a/src/Logging/CommonLogger.cpp +++ b/src/Logging/CommonLogger.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Logging/CommonLogger.h b/src/Logging/CommonLogger.h index 5d28f093f..f6e5cafbd 100644 --- a/src/Logging/CommonLogger.h +++ b/src/Logging/CommonLogger.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Logging/ConsoleLogger.cpp b/src/Logging/ConsoleLogger.cpp index a45366106..5e492b1ea 100644 --- a/src/Logging/ConsoleLogger.cpp +++ b/src/Logging/ConsoleLogger.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Logging/ConsoleLogger.h b/src/Logging/ConsoleLogger.h index f47ef77f8..c98541391 100644 --- a/src/Logging/ConsoleLogger.h +++ b/src/Logging/ConsoleLogger.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Logging/FileLogger.cpp b/src/Logging/FileLogger.cpp index 95f69ade5..8c8a39453 100644 --- a/src/Logging/FileLogger.cpp +++ b/src/Logging/FileLogger.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Logging/FileLogger.h b/src/Logging/FileLogger.h index f6f73e0e1..ec948a94f 100644 --- a/src/Logging/FileLogger.h +++ b/src/Logging/FileLogger.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Logging/ILogger.cpp b/src/Logging/ILogger.cpp index 776118998..796741c76 100644 --- a/src/Logging/ILogger.cpp +++ b/src/Logging/ILogger.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Logging/ILogger.h b/src/Logging/ILogger.h index 0bc54cc8d..81146dcdf 100644 --- a/src/Logging/ILogger.h +++ b/src/Logging/ILogger.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Logging/LoggerGroup.cpp b/src/Logging/LoggerGroup.cpp index 11d6c4238..6b4c594bf 100644 --- a/src/Logging/LoggerGroup.cpp +++ b/src/Logging/LoggerGroup.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Logging/LoggerGroup.h b/src/Logging/LoggerGroup.h index 19e91f15b..9e5fcf56e 100644 --- a/src/Logging/LoggerGroup.h +++ b/src/Logging/LoggerGroup.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Logging/LoggerManager.cpp b/src/Logging/LoggerManager.cpp index 1b47c1166..256a142e5 100644 --- a/src/Logging/LoggerManager.cpp +++ b/src/Logging/LoggerManager.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Logging/LoggerManager.h b/src/Logging/LoggerManager.h index 9926b2f50..c86556041 100644 --- a/src/Logging/LoggerManager.h +++ b/src/Logging/LoggerManager.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Logging/LoggerMessage.cpp b/src/Logging/LoggerMessage.cpp index 62ddb2c91..4bfb40d81 100644 --- a/src/Logging/LoggerMessage.cpp +++ b/src/Logging/LoggerMessage.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Logging/LoggerMessage.h b/src/Logging/LoggerMessage.h index db499375e..c6bc8d153 100644 --- a/src/Logging/LoggerMessage.h +++ b/src/Logging/LoggerMessage.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Logging/LoggerRef.cpp b/src/Logging/LoggerRef.cpp index 89cecaafa..82727f315 100644 --- a/src/Logging/LoggerRef.cpp +++ b/src/Logging/LoggerRef.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Logging/LoggerRef.h b/src/Logging/LoggerRef.h index ea6494b36..5f63654b9 100644 --- a/src/Logging/LoggerRef.h +++ b/src/Logging/LoggerRef.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Logging/StreamLogger.cpp b/src/Logging/StreamLogger.cpp index a6ea1e3fb..bd8315148 100644 --- a/src/Logging/StreamLogger.cpp +++ b/src/Logging/StreamLogger.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Logging/StreamLogger.h b/src/Logging/StreamLogger.h index 4f1918dbe..e06523e1f 100644 --- a/src/Logging/StreamLogger.h +++ b/src/Logging/StreamLogger.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Mnemonics/CRC32.h b/src/Mnemonics/CRC32.h index 07b5404ec..a1d1c8cef 100644 --- a/src/Mnemonics/CRC32.h +++ b/src/Mnemonics/CRC32.h @@ -25,6 +25,7 @@ SOFTWARE. #pragma once +#include #include #include diff --git a/src/Mnemonics/Mnemonics.cpp b/src/Mnemonics/Mnemonics.cpp index 9f28aec79..6bd7b2eaf 100644 --- a/src/Mnemonics/Mnemonics.cpp +++ b/src/Mnemonics/Mnemonics.cpp @@ -1,5 +1,5 @@ // Copyright 2014-2018 The Monero Developers -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Please see the included LICENSE file for more information. diff --git a/src/Mnemonics/Mnemonics.h b/src/Mnemonics/Mnemonics.h index 9e0d25ff5..a58312df7 100644 --- a/src/Mnemonics/Mnemonics.h +++ b/src/Mnemonics/Mnemonics.h @@ -1,5 +1,5 @@ // Copyright 2014-2018 The Monero Developers -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Please see the included LICENSE file for more information. diff --git a/src/NodeRpcProxy/NodeErrors.cpp b/src/NodeRpcProxy/NodeErrors.cpp index f8b8e0eda..cf33c4178 100644 --- a/src/NodeRpcProxy/NodeErrors.cpp +++ b/src/NodeRpcProxy/NodeErrors.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/NodeRpcProxy/NodeErrors.h b/src/NodeRpcProxy/NodeErrors.h index 4b6be391d..1923550e2 100644 --- a/src/NodeRpcProxy/NodeErrors.h +++ b/src/NodeRpcProxy/NodeErrors.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/NodeRpcProxy/NodeRpcProxy.cpp b/src/NodeRpcProxy/NodeRpcProxy.cpp index 6cb05e827..e5c4b039a 100644 --- a/src/NodeRpcProxy/NodeRpcProxy.cpp +++ b/src/NodeRpcProxy/NodeRpcProxy.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/NodeRpcProxy/NodeRpcProxy.h b/src/NodeRpcProxy/NodeRpcProxy.h index 4e724fc73..93aaa4fb2 100644 --- a/src/NodeRpcProxy/NodeRpcProxy.h +++ b/src/NodeRpcProxy/NodeRpcProxy.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/ConnectionContext.h b/src/P2p/ConnectionContext.h index 489893d55..7ac24e29d 100644 --- a/src/P2p/ConnectionContext.h +++ b/src/P2p/ConnectionContext.h @@ -2,7 +2,7 @@ // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs // Copyright (c) 2018-2019 The TurtleCoin developers // Copyright (c) 2016-2020 The Karbo developers -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/IP2pNodeInternal.cpp b/src/P2p/IP2pNodeInternal.cpp index ffaff617a..793549e54 100644 --- a/src/P2p/IP2pNodeInternal.cpp +++ b/src/P2p/IP2pNodeInternal.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/IP2pNodeInternal.h b/src/P2p/IP2pNodeInternal.h index 48e900e2d..a892bd550 100644 --- a/src/P2p/IP2pNodeInternal.h +++ b/src/P2p/IP2pNodeInternal.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/LevinProtocol.cpp b/src/P2p/LevinProtocol.cpp index 2a952483c..63a09a102 100644 --- a/src/P2p/LevinProtocol.cpp +++ b/src/P2p/LevinProtocol.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/LevinProtocol.h b/src/P2p/LevinProtocol.h index 601e16766..3fbb44fdd 100644 --- a/src/P2p/LevinProtocol.h +++ b/src/P2p/LevinProtocol.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/NetNode.cpp b/src/P2p/NetNode.cpp index 12f6bd07e..35ec0eb3b 100644 --- a/src/P2p/NetNode.cpp +++ b/src/P2p/NetNode.cpp @@ -2,7 +2,7 @@ // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs // Copyright (c) 2018-2019 The TurtleCoin developers // Copyright (c) 2016-2020 The Karbo developers -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/NetNode.h b/src/P2p/NetNode.h index bc4d14ff2..3af8a0941 100644 --- a/src/P2p/NetNode.h +++ b/src/P2p/NetNode.h @@ -2,7 +2,7 @@ // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs // Copyright (c) 2018-2019 The TurtleCoin developers // Copyright (c) 2016-2020 The Karbo developers -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/NetNodeCommon.h b/src/P2p/NetNodeCommon.h index 3971f61a7..216359818 100644 --- a/src/P2p/NetNodeCommon.h +++ b/src/P2p/NetNodeCommon.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/NetNodeConfig.cpp b/src/P2p/NetNodeConfig.cpp index f3ed4b0bb..4b05ca810 100644 --- a/src/P2p/NetNodeConfig.cpp +++ b/src/P2p/NetNodeConfig.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/NetNodeConfig.h b/src/P2p/NetNodeConfig.h index 27a926941..f8500dd89 100644 --- a/src/P2p/NetNodeConfig.h +++ b/src/P2p/NetNodeConfig.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/P2pConnectionProxy.cpp b/src/P2p/P2pConnectionProxy.cpp index a7a048716..5a50bb0e3 100644 --- a/src/P2p/P2pConnectionProxy.cpp +++ b/src/P2p/P2pConnectionProxy.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/P2pConnectionProxy.h b/src/P2p/P2pConnectionProxy.h index c742eefd1..7795b4774 100644 --- a/src/P2p/P2pConnectionProxy.h +++ b/src/P2p/P2pConnectionProxy.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/P2pContext.cpp b/src/P2p/P2pContext.cpp index 792abc171..8b10899bc 100644 --- a/src/P2p/P2pContext.cpp +++ b/src/P2p/P2pContext.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/P2pContext.h b/src/P2p/P2pContext.h index bd4f523f7..ba01809ac 100644 --- a/src/P2p/P2pContext.h +++ b/src/P2p/P2pContext.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/P2pContextOwner.cpp b/src/P2p/P2pContextOwner.cpp index 6fea0dd22..03404879e 100644 --- a/src/P2p/P2pContextOwner.cpp +++ b/src/P2p/P2pContextOwner.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/P2pContextOwner.h b/src/P2p/P2pContextOwner.h index 33389f253..b6a682876 100644 --- a/src/P2p/P2pContextOwner.h +++ b/src/P2p/P2pContextOwner.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/P2pInterfaces.cpp b/src/P2p/P2pInterfaces.cpp index e10d18e06..3a0c83936 100644 --- a/src/P2p/P2pInterfaces.cpp +++ b/src/P2p/P2pInterfaces.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/P2pInterfaces.h b/src/P2p/P2pInterfaces.h index 0400118f5..da17e59df 100644 --- a/src/P2p/P2pInterfaces.h +++ b/src/P2p/P2pInterfaces.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/P2pNetworks.h b/src/P2p/P2pNetworks.h index deaceaf0c..7d97c4e50 100644 --- a/src/P2p/P2pNetworks.h +++ b/src/P2p/P2pNetworks.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/P2pNode.cpp b/src/P2p/P2pNode.cpp index 768ed27be..9dd4fc3a8 100644 --- a/src/P2p/P2pNode.cpp +++ b/src/P2p/P2pNode.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2018, The TurtleCoin Developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/P2pNode.h b/src/P2p/P2pNode.h index b9fa9f898..9355335fa 100644 --- a/src/P2p/P2pNode.h +++ b/src/P2p/P2pNode.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/P2pNodeConfig.cpp b/src/P2p/P2pNodeConfig.cpp index 87b33ea6f..7a81d58d1 100644 --- a/src/P2p/P2pNodeConfig.cpp +++ b/src/P2p/P2pNodeConfig.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/P2pNodeConfig.h b/src/P2p/P2pNodeConfig.h index 0efc219c4..47f28c219 100644 --- a/src/P2p/P2pNodeConfig.h +++ b/src/P2p/P2pNodeConfig.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/P2pProtocolDefinitions.h b/src/P2p/P2pProtocolDefinitions.h index 26f53bb3f..4c73e8500 100644 --- a/src/P2p/P2pProtocolDefinitions.h +++ b/src/P2p/P2pProtocolDefinitions.h @@ -2,7 +2,7 @@ // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs // Copyright (c) 2018-2019 The TurtleCoin developers // Copyright (c) 2016-2020 The Karbo developers -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/P2pProtocolTypes.h b/src/P2p/P2pProtocolTypes.h index 95f598892..b00c65bbd 100644 --- a/src/P2p/P2pProtocolTypes.h +++ b/src/P2p/P2pProtocolTypes.h @@ -1,7 +1,7 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs // Copyright (c) 2018-2020 Karbo developers -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/PeerListManager.cpp b/src/P2p/PeerListManager.cpp index a286e5cfe..b23603d3e 100644 --- a/src/P2p/PeerListManager.cpp +++ b/src/P2p/PeerListManager.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs // Copyright (c) 2018-2020 Karbo developers -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/P2p/PeerListManager.h b/src/P2p/PeerListManager.h index 1a248ff10..1c979c834 100644 --- a/src/P2p/PeerListManager.h +++ b/src/P2p/PeerListManager.h @@ -1,7 +1,7 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs // Copyright (c) 2018-2020 Karbo developers -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/PaymentGate/NodeFactory.cpp b/src/PaymentGate/NodeFactory.cpp index b99629362..ef3de5539 100644 --- a/src/PaymentGate/NodeFactory.cpp +++ b/src/PaymentGate/NodeFactory.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/PaymentGate/NodeFactory.h b/src/PaymentGate/NodeFactory.h index 95673a909..f6f86046f 100644 --- a/src/PaymentGate/NodeFactory.h +++ b/src/PaymentGate/NodeFactory.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/PaymentGate/PaymentServiceJsonRpcMessages.cpp b/src/PaymentGate/PaymentServiceJsonRpcMessages.cpp index 42e1d70f5..056d3bfa3 100644 --- a/src/PaymentGate/PaymentServiceJsonRpcMessages.cpp +++ b/src/PaymentGate/PaymentServiceJsonRpcMessages.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/PaymentGate/PaymentServiceJsonRpcMessages.h b/src/PaymentGate/PaymentServiceJsonRpcMessages.h index b8e7bf4c7..4444acf40 100644 --- a/src/PaymentGate/PaymentServiceJsonRpcMessages.h +++ b/src/PaymentGate/PaymentServiceJsonRpcMessages.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/PaymentGate/PaymentServiceJsonRpcServer.cpp b/src/PaymentGate/PaymentServiceJsonRpcServer.cpp index b9186d332..933a2fbc6 100644 --- a/src/PaymentGate/PaymentServiceJsonRpcServer.cpp +++ b/src/PaymentGate/PaymentServiceJsonRpcServer.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/PaymentGate/PaymentServiceJsonRpcServer.h b/src/PaymentGate/PaymentServiceJsonRpcServer.h index 8f9fc5ce5..72ec9340b 100644 --- a/src/PaymentGate/PaymentServiceJsonRpcServer.h +++ b/src/PaymentGate/PaymentServiceJsonRpcServer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/PaymentGate/WalletService.cpp b/src/PaymentGate/WalletService.cpp index 97ce49086..39264fdba 100644 --- a/src/PaymentGate/WalletService.cpp +++ b/src/PaymentGate/WalletService.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/PaymentGate/WalletService.h b/src/PaymentGate/WalletService.h index cb7666a10..a6e129607 100644 --- a/src/PaymentGate/WalletService.h +++ b/src/PaymentGate/WalletService.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/PaymentGate/WalletServiceErrorCategory.cpp b/src/PaymentGate/WalletServiceErrorCategory.cpp index f4251ad99..7b3c943c7 100644 --- a/src/PaymentGate/WalletServiceErrorCategory.cpp +++ b/src/PaymentGate/WalletServiceErrorCategory.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/PaymentGate/WalletServiceErrorCategory.h b/src/PaymentGate/WalletServiceErrorCategory.h index afcaa878b..8323d5c4c 100644 --- a/src/PaymentGate/WalletServiceErrorCategory.h +++ b/src/PaymentGate/WalletServiceErrorCategory.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/PaymentGateService/ConfigurationManager.cpp b/src/PaymentGateService/ConfigurationManager.cpp index c76424efa..bd292f777 100644 --- a/src/PaymentGateService/ConfigurationManager.cpp +++ b/src/PaymentGateService/ConfigurationManager.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/PaymentGateService/ConfigurationManager.h b/src/PaymentGateService/ConfigurationManager.h index 6760601cd..d1949ce92 100644 --- a/src/PaymentGateService/ConfigurationManager.h +++ b/src/PaymentGateService/ConfigurationManager.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/PaymentGateService/PaymentGateService.cpp b/src/PaymentGateService/PaymentGateService.cpp index 09c871711..716dd41ab 100644 --- a/src/PaymentGateService/PaymentGateService.cpp +++ b/src/PaymentGateService/PaymentGateService.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/PaymentGateService/PaymentGateService.h b/src/PaymentGateService/PaymentGateService.h index 6ce6a56cd..61a36be77 100644 --- a/src/PaymentGateService/PaymentGateService.h +++ b/src/PaymentGateService/PaymentGateService.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/PaymentGateService/PaymentServiceConfiguration.cpp b/src/PaymentGateService/PaymentServiceConfiguration.cpp index 464dcfadb..8e7924d5f 100644 --- a/src/PaymentGateService/PaymentServiceConfiguration.cpp +++ b/src/PaymentGateService/PaymentServiceConfiguration.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/PaymentGateService/PaymentServiceConfiguration.h b/src/PaymentGateService/PaymentServiceConfiguration.h index b5af7cce4..bd0e38c4c 100644 --- a/src/PaymentGateService/PaymentServiceConfiguration.h +++ b/src/PaymentGateService/PaymentServiceConfiguration.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/PaymentGateService/RpcNodeConfiguration.cpp b/src/PaymentGateService/RpcNodeConfiguration.cpp index 89d30ca00..a2e982734 100644 --- a/src/PaymentGateService/RpcNodeConfiguration.cpp +++ b/src/PaymentGateService/RpcNodeConfiguration.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/PaymentGateService/RpcNodeConfiguration.h b/src/PaymentGateService/RpcNodeConfiguration.h index defd886c6..3ae0ca51a 100644 --- a/src/PaymentGateService/RpcNodeConfiguration.h +++ b/src/PaymentGateService/RpcNodeConfiguration.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/PaymentGateService/main.cpp b/src/PaymentGateService/main.cpp index 09bdba3ed..6307e6fc8 100644 --- a/src/PaymentGateService/main.cpp +++ b/src/PaymentGateService/main.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Linux/System/ErrorMessage.cpp b/src/Platform/Linux/System/ErrorMessage.cpp index c59466d87..b52d3ee31 100644 --- a/src/Platform/Linux/System/ErrorMessage.cpp +++ b/src/Platform/Linux/System/ErrorMessage.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Linux/System/ErrorMessage.h b/src/Platform/Linux/System/ErrorMessage.h index 4c6de3eb3..ead71432d 100644 --- a/src/Platform/Linux/System/ErrorMessage.h +++ b/src/Platform/Linux/System/ErrorMessage.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Linux/System/Future.h b/src/Platform/Linux/System/Future.h index 6de5dd84f..7abafe8bf 100644 --- a/src/Platform/Linux/System/Future.h +++ b/src/Platform/Linux/System/Future.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Linux/System/Ipv4Resolver.cpp b/src/Platform/Linux/System/Ipv4Resolver.cpp index b531da926..717f773a2 100644 --- a/src/Platform/Linux/System/Ipv4Resolver.cpp +++ b/src/Platform/Linux/System/Ipv4Resolver.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Linux/System/Ipv4Resolver.h b/src/Platform/Linux/System/Ipv4Resolver.h index 3183a927c..b5a25741c 100644 --- a/src/Platform/Linux/System/Ipv4Resolver.h +++ b/src/Platform/Linux/System/Ipv4Resolver.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Linux/System/TcpConnection.h b/src/Platform/Linux/System/TcpConnection.h index 31bfa5b5c..f8777791f 100644 --- a/src/Platform/Linux/System/TcpConnection.h +++ b/src/Platform/Linux/System/TcpConnection.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Linux/System/TcpConnector.cpp b/src/Platform/Linux/System/TcpConnector.cpp index fa14f97ec..80e1203b4 100644 --- a/src/Platform/Linux/System/TcpConnector.cpp +++ b/src/Platform/Linux/System/TcpConnector.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Linux/System/TcpConnector.h b/src/Platform/Linux/System/TcpConnector.h index 481d3cacb..fc1807027 100644 --- a/src/Platform/Linux/System/TcpConnector.h +++ b/src/Platform/Linux/System/TcpConnector.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Linux/System/TcpListener.cpp b/src/Platform/Linux/System/TcpListener.cpp index 8463d8526..63cfca061 100644 --- a/src/Platform/Linux/System/TcpListener.cpp +++ b/src/Platform/Linux/System/TcpListener.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Linux/System/TcpListener.h b/src/Platform/Linux/System/TcpListener.h index adddcfe5f..8fb85c0c8 100644 --- a/src/Platform/Linux/System/TcpListener.h +++ b/src/Platform/Linux/System/TcpListener.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Linux/System/Timer.h b/src/Platform/Linux/System/Timer.h index 64281b63b..c1ec811b1 100644 --- a/src/Platform/Linux/System/Timer.h +++ b/src/Platform/Linux/System/Timer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/OSX/System/ErrorMessage.cpp b/src/Platform/OSX/System/ErrorMessage.cpp index c59466d87..b52d3ee31 100644 --- a/src/Platform/OSX/System/ErrorMessage.cpp +++ b/src/Platform/OSX/System/ErrorMessage.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/OSX/System/ErrorMessage.h b/src/Platform/OSX/System/ErrorMessage.h index 4c6de3eb3..ead71432d 100644 --- a/src/Platform/OSX/System/ErrorMessage.h +++ b/src/Platform/OSX/System/ErrorMessage.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/OSX/System/Future.h b/src/Platform/OSX/System/Future.h index aaca9e6d1..ed9a624ec 100644 --- a/src/Platform/OSX/System/Future.h +++ b/src/Platform/OSX/System/Future.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/OSX/System/Ipv4Resolver.cpp b/src/Platform/OSX/System/Ipv4Resolver.cpp index b531da926..717f773a2 100644 --- a/src/Platform/OSX/System/Ipv4Resolver.cpp +++ b/src/Platform/OSX/System/Ipv4Resolver.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/OSX/System/Ipv4Resolver.h b/src/Platform/OSX/System/Ipv4Resolver.h index 3183a927c..b5a25741c 100644 --- a/src/Platform/OSX/System/Ipv4Resolver.h +++ b/src/Platform/OSX/System/Ipv4Resolver.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/OSX/System/TcpConnection.cpp b/src/Platform/OSX/System/TcpConnection.cpp index 5dd4c63fe..c036ae597 100644 --- a/src/Platform/OSX/System/TcpConnection.cpp +++ b/src/Platform/OSX/System/TcpConnection.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/OSX/System/TcpConnection.h b/src/Platform/OSX/System/TcpConnection.h index f92447fe0..c850cf1ab 100644 --- a/src/Platform/OSX/System/TcpConnection.h +++ b/src/Platform/OSX/System/TcpConnection.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/OSX/System/TcpConnector.cpp b/src/Platform/OSX/System/TcpConnector.cpp index ef3724f70..5402930b7 100644 --- a/src/Platform/OSX/System/TcpConnector.cpp +++ b/src/Platform/OSX/System/TcpConnector.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/OSX/System/TcpConnector.h b/src/Platform/OSX/System/TcpConnector.h index 481d3cacb..fc1807027 100644 --- a/src/Platform/OSX/System/TcpConnector.h +++ b/src/Platform/OSX/System/TcpConnector.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/OSX/System/TcpListener.cpp b/src/Platform/OSX/System/TcpListener.cpp index 0a5895d6b..1fc01d417 100644 --- a/src/Platform/OSX/System/TcpListener.cpp +++ b/src/Platform/OSX/System/TcpListener.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/OSX/System/TcpListener.h b/src/Platform/OSX/System/TcpListener.h index 8db2fb7ca..aa4354901 100644 --- a/src/Platform/OSX/System/TcpListener.h +++ b/src/Platform/OSX/System/TcpListener.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/OSX/System/Timer.cpp b/src/Platform/OSX/System/Timer.cpp index ae963b15e..000afa000 100644 --- a/src/Platform/OSX/System/Timer.cpp +++ b/src/Platform/OSX/System/Timer.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/OSX/System/Timer.h b/src/Platform/OSX/System/Timer.h index 413159589..f71b1295f 100644 --- a/src/Platform/OSX/System/Timer.h +++ b/src/Platform/OSX/System/Timer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Windows/System/ErrorMessage.cpp b/src/Platform/Windows/System/ErrorMessage.cpp index d5a62904a..81f4d6e99 100644 --- a/src/Platform/Windows/System/ErrorMessage.cpp +++ b/src/Platform/Windows/System/ErrorMessage.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Windows/System/ErrorMessage.h b/src/Platform/Windows/System/ErrorMessage.h index 904d3911e..c60e888a2 100644 --- a/src/Platform/Windows/System/ErrorMessage.h +++ b/src/Platform/Windows/System/ErrorMessage.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Windows/System/Future.h b/src/Platform/Windows/System/Future.h index c5a8e9103..868211713 100644 --- a/src/Platform/Windows/System/Future.h +++ b/src/Platform/Windows/System/Future.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Windows/System/Ipv4Resolver.cpp b/src/Platform/Windows/System/Ipv4Resolver.cpp index 5b63da94a..ff2ed949b 100644 --- a/src/Platform/Windows/System/Ipv4Resolver.cpp +++ b/src/Platform/Windows/System/Ipv4Resolver.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Windows/System/Ipv4Resolver.h b/src/Platform/Windows/System/Ipv4Resolver.h index 86ce9378b..d5718bce5 100644 --- a/src/Platform/Windows/System/Ipv4Resolver.h +++ b/src/Platform/Windows/System/Ipv4Resolver.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Windows/System/TcpConnection.cpp b/src/Platform/Windows/System/TcpConnection.cpp index b0d2765c2..1f304de92 100644 --- a/src/Platform/Windows/System/TcpConnection.cpp +++ b/src/Platform/Windows/System/TcpConnection.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Windows/System/TcpConnection.h b/src/Platform/Windows/System/TcpConnection.h index 38565c3da..658009caf 100644 --- a/src/Platform/Windows/System/TcpConnection.h +++ b/src/Platform/Windows/System/TcpConnection.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Windows/System/TcpConnector.cpp b/src/Platform/Windows/System/TcpConnector.cpp index f41270cb5..b0e763da5 100644 --- a/src/Platform/Windows/System/TcpConnector.cpp +++ b/src/Platform/Windows/System/TcpConnector.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Windows/System/TcpConnector.h b/src/Platform/Windows/System/TcpConnector.h index b1d9f4c9b..f7e0100a6 100644 --- a/src/Platform/Windows/System/TcpConnector.h +++ b/src/Platform/Windows/System/TcpConnector.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Windows/System/TcpListener.cpp b/src/Platform/Windows/System/TcpListener.cpp index fecc0815a..7df762f7c 100644 --- a/src/Platform/Windows/System/TcpListener.cpp +++ b/src/Platform/Windows/System/TcpListener.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Windows/System/TcpListener.h b/src/Platform/Windows/System/TcpListener.h index 8cff15c65..6b2ded965 100644 --- a/src/Platform/Windows/System/TcpListener.h +++ b/src/Platform/Windows/System/TcpListener.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Windows/System/Timer.cpp b/src/Platform/Windows/System/Timer.cpp index 3ccdd36d5..80469ec9d 100644 --- a/src/Platform/Windows/System/Timer.cpp +++ b/src/Platform/Windows/System/Timer.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/Windows/System/Timer.h b/src/Platform/Windows/System/Timer.h index 7f4d169c2..0da0f8ca7 100644 --- a/src/Platform/Windows/System/Timer.h +++ b/src/Platform/Windows/System/Timer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/mingw/alloca.h b/src/Platform/mingw/alloca.h index 1f7c37749..b83799cee 100644 --- a/src/Platform/mingw/alloca.h +++ b/src/Platform/mingw/alloca.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/msc/alloca.h b/src/Platform/msc/alloca.h index 6c4e93006..2edeaa41a 100644 --- a/src/Platform/msc/alloca.h +++ b/src/Platform/msc/alloca.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/msc/stdbool.h b/src/Platform/msc/stdbool.h index 57e0b2ecb..c08a41812 100644 --- a/src/Platform/msc/stdbool.h +++ b/src/Platform/msc/stdbool.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Platform/msc/sys/param.h b/src/Platform/msc/sys/param.h index 53a815638..1337d8561 100644 --- a/src/Platform/msc/sys/param.h +++ b/src/Platform/msc/sys/param.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Rpc/CoreRpcServerCommandsDefinitions.h b/src/Rpc/CoreRpcServerCommandsDefinitions.h index defb931f7..b053643a7 100644 --- a/src/Rpc/CoreRpcServerCommandsDefinitions.h +++ b/src/Rpc/CoreRpcServerCommandsDefinitions.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Rpc/CoreRpcServerErrorCodes.h b/src/Rpc/CoreRpcServerErrorCodes.h index 240b2eb44..e836de285 100644 --- a/src/Rpc/CoreRpcServerErrorCodes.h +++ b/src/Rpc/CoreRpcServerErrorCodes.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Rpc/RpcServer.cpp b/src/Rpc/RpcServer.cpp index 6e6f6ab11..82ae8078f 100644 --- a/src/Rpc/RpcServer.cpp +++ b/src/Rpc/RpcServer.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -457,12 +457,17 @@ bool RpcServer::on_get_txs_with_output_global_indexes(const COMMAND_RPC_GET_TRAN } std::vector range = req.heights; + if (range.back() < range.front()) + { + throw JsonRpc::JsonRpcError{CORE_RPC_ERROR_CODE_WRONG_PARAM, + std::string("Invalid heights range: ") + std::to_string(range.front()) + " must be < " + std::to_string(range.back())}; + } + if (range.back() - range.front() > BLOCK_LIST_MAX_COUNT) { throw JsonRpc::JsonRpcError{ CORE_RPC_ERROR_CODE_WRONG_PARAM, std::string("Requested blocks count: ") + std::to_string(range.back() - range.front()) + " exceeded max limit of " + std::to_string(BLOCK_LIST_MAX_COUNT) }; } - std::sort(range.begin(), range.end()); uint32_t upperBound = std::min(range[1], m_core.get_current_blockchain_height()); for (size_t i = 0; i < (upperBound - range[0]); i++) { heights.push_back(range[0] + i); diff --git a/src/Rpc/RpcServer.h b/src/Rpc/RpcServer.h index b9b092b1a..fc0c746b0 100644 --- a/src/Rpc/RpcServer.h +++ b/src/Rpc/RpcServer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Rpc/RpcServerConfig.cpp b/src/Rpc/RpcServerConfig.cpp index 679b2c42e..164206fc0 100644 --- a/src/Rpc/RpcServerConfig.cpp +++ b/src/Rpc/RpcServerConfig.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Rpc/RpcServerConfig.h b/src/Rpc/RpcServerConfig.h index bf3d52f58..8db9330c2 100644 --- a/src/Rpc/RpcServerConfig.h +++ b/src/Rpc/RpcServerConfig.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/BinaryInputStreamSerializer.cpp b/src/Serialization/BinaryInputStreamSerializer.cpp index 7974ea2c2..f58764743 100644 --- a/src/Serialization/BinaryInputStreamSerializer.cpp +++ b/src/Serialization/BinaryInputStreamSerializer.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // // Distributed under the MIT/X11 software license, see the accompanying diff --git a/src/Serialization/BinaryInputStreamSerializer.h b/src/Serialization/BinaryInputStreamSerializer.h index 79bf3ed88..9514ce2cc 100644 --- a/src/Serialization/BinaryInputStreamSerializer.h +++ b/src/Serialization/BinaryInputStreamSerializer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/BinaryOutputStreamSerializer.cpp b/src/Serialization/BinaryOutputStreamSerializer.cpp index 98925c83f..4fbf9baa9 100644 --- a/src/Serialization/BinaryOutputStreamSerializer.cpp +++ b/src/Serialization/BinaryOutputStreamSerializer.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/BinaryOutputStreamSerializer.h b/src/Serialization/BinaryOutputStreamSerializer.h index 470644df8..5aa90f284 100644 --- a/src/Serialization/BinaryOutputStreamSerializer.h +++ b/src/Serialization/BinaryOutputStreamSerializer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/BinarySerializationTools.h b/src/Serialization/BinarySerializationTools.h index 6742b458c..c741cd407 100644 --- a/src/Serialization/BinarySerializationTools.h +++ b/src/Serialization/BinarySerializationTools.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/ISerializer.h b/src/Serialization/ISerializer.h index 22bf30ff8..d1934f6a3 100644 --- a/src/Serialization/ISerializer.h +++ b/src/Serialization/ISerializer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/IStream.h b/src/Serialization/IStream.h index 72f2e6250..a92b0ac2c 100644 --- a/src/Serialization/IStream.h +++ b/src/Serialization/IStream.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/JsonInputStreamSerializer.cpp b/src/Serialization/JsonInputStreamSerializer.cpp index d07edb560..bab5b4e9e 100644 --- a/src/Serialization/JsonInputStreamSerializer.cpp +++ b/src/Serialization/JsonInputStreamSerializer.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/JsonInputStreamSerializer.h b/src/Serialization/JsonInputStreamSerializer.h index 274b34b69..9c22550ba 100644 --- a/src/Serialization/JsonInputStreamSerializer.h +++ b/src/Serialization/JsonInputStreamSerializer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/JsonInputValueSerializer.cpp b/src/Serialization/JsonInputValueSerializer.cpp index 0a6bfcb43..5f552bd25 100644 --- a/src/Serialization/JsonInputValueSerializer.cpp +++ b/src/Serialization/JsonInputValueSerializer.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/JsonInputValueSerializer.h b/src/Serialization/JsonInputValueSerializer.h index b382c880f..916574b83 100644 --- a/src/Serialization/JsonInputValueSerializer.h +++ b/src/Serialization/JsonInputValueSerializer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/JsonOutputStreamSerializer.cpp b/src/Serialization/JsonOutputStreamSerializer.cpp index e06bc23a3..50887f42f 100644 --- a/src/Serialization/JsonOutputStreamSerializer.cpp +++ b/src/Serialization/JsonOutputStreamSerializer.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/JsonOutputStreamSerializer.h b/src/Serialization/JsonOutputStreamSerializer.h index 6e405c72f..2ea17460d 100644 --- a/src/Serialization/JsonOutputStreamSerializer.h +++ b/src/Serialization/JsonOutputStreamSerializer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/KVBinaryCommon.h b/src/Serialization/KVBinaryCommon.h index 6636ab9a1..f2db72d97 100644 --- a/src/Serialization/KVBinaryCommon.h +++ b/src/Serialization/KVBinaryCommon.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/KVBinaryInputStreamSerializer.cpp b/src/Serialization/KVBinaryInputStreamSerializer.cpp index f93e5d039..f39c9035c 100644 --- a/src/Serialization/KVBinaryInputStreamSerializer.cpp +++ b/src/Serialization/KVBinaryInputStreamSerializer.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/KVBinaryInputStreamSerializer.h b/src/Serialization/KVBinaryInputStreamSerializer.h index 6ecaadeff..096bc3d77 100644 --- a/src/Serialization/KVBinaryInputStreamSerializer.h +++ b/src/Serialization/KVBinaryInputStreamSerializer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/KVBinaryOutputStreamSerializer.cpp b/src/Serialization/KVBinaryOutputStreamSerializer.cpp index 3882e9e0e..d00fd34e4 100644 --- a/src/Serialization/KVBinaryOutputStreamSerializer.cpp +++ b/src/Serialization/KVBinaryOutputStreamSerializer.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/KVBinaryOutputStreamSerializer.h b/src/Serialization/KVBinaryOutputStreamSerializer.h index 5a1b08993..a3410fd35 100644 --- a/src/Serialization/KVBinaryOutputStreamSerializer.h +++ b/src/Serialization/KVBinaryOutputStreamSerializer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/MemoryStream.cpp b/src/Serialization/MemoryStream.cpp index 55840e652..80a813afc 100644 --- a/src/Serialization/MemoryStream.cpp +++ b/src/Serialization/MemoryStream.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/MemoryStream.h b/src/Serialization/MemoryStream.h index a81840488..a4c44dfc4 100644 --- a/src/Serialization/MemoryStream.h +++ b/src/Serialization/MemoryStream.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/SerializationOverloads.cpp b/src/Serialization/SerializationOverloads.cpp index 09b469588..53462bc11 100644 --- a/src/Serialization/SerializationOverloads.cpp +++ b/src/Serialization/SerializationOverloads.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/SerializationOverloads.h b/src/Serialization/SerializationOverloads.h index ce98c5e54..205de35eb 100644 --- a/src/Serialization/SerializationOverloads.h +++ b/src/Serialization/SerializationOverloads.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Serialization/SerializationTools.h b/src/Serialization/SerializationTools.h index c58b1096f..d8f64343d 100644 --- a/src/Serialization/SerializationTools.h +++ b/src/Serialization/SerializationTools.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/System/Context.h b/src/System/Context.h index 06ebdccf7..5d814630a 100644 --- a/src/System/Context.h +++ b/src/System/Context.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/System/ContextGroup.cpp b/src/System/ContextGroup.cpp index a7162e21c..116a4dac0 100644 --- a/src/System/ContextGroup.cpp +++ b/src/System/ContextGroup.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/System/ContextGroup.h b/src/System/ContextGroup.h index 575e209c0..5af6bbd1a 100644 --- a/src/System/ContextGroup.h +++ b/src/System/ContextGroup.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/System/ContextGroupTimeout.cpp b/src/System/ContextGroupTimeout.cpp index 5b98f5747..a9ebe7dd7 100644 --- a/src/System/ContextGroupTimeout.cpp +++ b/src/System/ContextGroupTimeout.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/System/ContextGroupTimeout.h b/src/System/ContextGroupTimeout.h index 2b190b168..786414744 100644 --- a/src/System/ContextGroupTimeout.h +++ b/src/System/ContextGroupTimeout.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/System/Event.cpp b/src/System/Event.cpp index 7fd02035b..357f63f3c 100644 --- a/src/System/Event.cpp +++ b/src/System/Event.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/System/Event.h b/src/System/Event.h index 18e20e25d..bf1cdb260 100644 --- a/src/System/Event.h +++ b/src/System/Event.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/System/EventLock.cpp b/src/System/EventLock.cpp index 409967dcd..57ae2476d 100644 --- a/src/System/EventLock.cpp +++ b/src/System/EventLock.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/System/EventLock.h b/src/System/EventLock.h index d0bc0d699..e2b424c8e 100644 --- a/src/System/EventLock.h +++ b/src/System/EventLock.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/System/InterruptedException.cpp b/src/System/InterruptedException.cpp index 3e005fa01..4f9c2e020 100644 --- a/src/System/InterruptedException.cpp +++ b/src/System/InterruptedException.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/System/InterruptedException.h b/src/System/InterruptedException.h index 0b68bea91..28c89a2dd 100644 --- a/src/System/InterruptedException.h +++ b/src/System/InterruptedException.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/System/Ipv4Address.cpp b/src/System/Ipv4Address.cpp index d44ee6a6c..e0ad31fdf 100644 --- a/src/System/Ipv4Address.cpp +++ b/src/System/Ipv4Address.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/System/Ipv4Address.h b/src/System/Ipv4Address.h index 04882c17a..369567957 100644 --- a/src/System/Ipv4Address.h +++ b/src/System/Ipv4Address.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/System/OperationTimeout.h b/src/System/OperationTimeout.h index 024002cce..a869170c5 100644 --- a/src/System/OperationTimeout.h +++ b/src/System/OperationTimeout.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/System/RemoteContext.h b/src/System/RemoteContext.h index 93d288ac3..de22a6fe7 100644 --- a/src/System/RemoteContext.h +++ b/src/System/RemoteContext.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/System/RemoteEventLock.cpp b/src/System/RemoteEventLock.cpp index 2c4a9ae3a..035b119c6 100644 --- a/src/System/RemoteEventLock.cpp +++ b/src/System/RemoteEventLock.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/System/RemoteEventLock.h b/src/System/RemoteEventLock.h index 8d1d6938b..a8db05372 100644 --- a/src/System/RemoteEventLock.h +++ b/src/System/RemoteEventLock.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/System/TcpStream.cpp b/src/System/TcpStream.cpp index 2f8eebb10..e02e0bf07 100644 --- a/src/System/TcpStream.cpp +++ b/src/System/TcpStream.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/System/TcpStream.h b/src/System/TcpStream.h index 31306e9d1..78fa55706 100644 --- a/src/System/TcpStream.h +++ b/src/System/TcpStream.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Transfers/BlockchainSynchronizer.cpp b/src/Transfers/BlockchainSynchronizer.cpp index b890048ff..6ef588410 100644 --- a/src/Transfers/BlockchainSynchronizer.cpp +++ b/src/Transfers/BlockchainSynchronizer.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Transfers/BlockchainSynchronizer.h b/src/Transfers/BlockchainSynchronizer.h index 598c16ec3..8d17a25e5 100644 --- a/src/Transfers/BlockchainSynchronizer.h +++ b/src/Transfers/BlockchainSynchronizer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Transfers/CommonTypes.h b/src/Transfers/CommonTypes.h index 8eaa4cc81..807ae2a94 100644 --- a/src/Transfers/CommonTypes.h +++ b/src/Transfers/CommonTypes.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Transfers/IBlockchainSynchronizer.h b/src/Transfers/IBlockchainSynchronizer.h index 4b12b5861..c1c171791 100644 --- a/src/Transfers/IBlockchainSynchronizer.h +++ b/src/Transfers/IBlockchainSynchronizer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Transfers/IObservableImpl.h b/src/Transfers/IObservableImpl.h index fd94aa2d4..1cd9d6fc3 100644 --- a/src/Transfers/IObservableImpl.h +++ b/src/Transfers/IObservableImpl.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Transfers/SynchronizationState.cpp b/src/Transfers/SynchronizationState.cpp index 2a7583bed..d114ef7db 100644 --- a/src/Transfers/SynchronizationState.cpp +++ b/src/Transfers/SynchronizationState.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Transfers/SynchronizationState.h b/src/Transfers/SynchronizationState.h index e3ffa904c..80d1de5ae 100644 --- a/src/Transfers/SynchronizationState.h +++ b/src/Transfers/SynchronizationState.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Transfers/TransfersConsumer.cpp b/src/Transfers/TransfersConsumer.cpp index e4d0771fe..b0671e5be 100644 --- a/src/Transfers/TransfersConsumer.cpp +++ b/src/Transfers/TransfersConsumer.cpp @@ -1,7 +1,7 @@ // Copyright (c) 2011-2017 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Transfers/TransfersConsumer.h b/src/Transfers/TransfersConsumer.h index ebd4f096a..0929abcdd 100644 --- a/src/Transfers/TransfersConsumer.h +++ b/src/Transfers/TransfersConsumer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Transfers/TransfersContainer.cpp b/src/Transfers/TransfersContainer.cpp index 7be172722..635d49983 100644 --- a/src/Transfers/TransfersContainer.cpp +++ b/src/Transfers/TransfersContainer.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Transfers/TransfersContainer.h b/src/Transfers/TransfersContainer.h index 221dfdaa9..ec9765b7d 100644 --- a/src/Transfers/TransfersContainer.h +++ b/src/Transfers/TransfersContainer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Transfers/TransfersSubscription.cpp b/src/Transfers/TransfersSubscription.cpp index d4ebd9180..fc1ca7098 100644 --- a/src/Transfers/TransfersSubscription.cpp +++ b/src/Transfers/TransfersSubscription.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Transfers/TransfersSubscription.h b/src/Transfers/TransfersSubscription.h index a4f872f46..35117912e 100644 --- a/src/Transfers/TransfersSubscription.h +++ b/src/Transfers/TransfersSubscription.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Transfers/TransfersSynchronizer.cpp b/src/Transfers/TransfersSynchronizer.cpp index b44af490e..f22c2fe44 100644 --- a/src/Transfers/TransfersSynchronizer.cpp +++ b/src/Transfers/TransfersSynchronizer.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Transfers/TransfersSynchronizer.h b/src/Transfers/TransfersSynchronizer.h index 1efcd798f..7869cc48c 100644 --- a/src/Transfers/TransfersSynchronizer.h +++ b/src/Transfers/TransfersSynchronizer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Transfers/TypeHelpers.h b/src/Transfers/TypeHelpers.h index 21b20ef89..36ab37870 100644 --- a/src/Transfers/TypeHelpers.h +++ b/src/Transfers/TypeHelpers.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Wallet/IFusionManager.h b/src/Wallet/IFusionManager.h index 5028f7c6e..bf21493ed 100644 --- a/src/Wallet/IFusionManager.h +++ b/src/Wallet/IFusionManager.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Wallet/LegacyKeysImporter.cpp b/src/Wallet/LegacyKeysImporter.cpp index 20a320098..867c30b3c 100644 --- a/src/Wallet/LegacyKeysImporter.cpp +++ b/src/Wallet/LegacyKeysImporter.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Wallet/LegacyKeysImporter.h b/src/Wallet/LegacyKeysImporter.h index 3a4ba67b8..fd85c1f27 100644 --- a/src/Wallet/LegacyKeysImporter.h +++ b/src/Wallet/LegacyKeysImporter.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Wallet/WalletAsyncContextCounter.cpp b/src/Wallet/WalletAsyncContextCounter.cpp index 6e6202ad1..4bb4ca351 100644 --- a/src/Wallet/WalletAsyncContextCounter.cpp +++ b/src/Wallet/WalletAsyncContextCounter.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Wallet/WalletAsyncContextCounter.h b/src/Wallet/WalletAsyncContextCounter.h index 3971cca9a..183f66620 100644 --- a/src/Wallet/WalletAsyncContextCounter.h +++ b/src/Wallet/WalletAsyncContextCounter.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Wallet/WalletErrors.cpp b/src/Wallet/WalletErrors.cpp index 1e2346ffa..fffe31009 100644 --- a/src/Wallet/WalletErrors.cpp +++ b/src/Wallet/WalletErrors.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Wallet/WalletErrors.h b/src/Wallet/WalletErrors.h index fbcf733b0..9be40b6bb 100644 --- a/src/Wallet/WalletErrors.h +++ b/src/Wallet/WalletErrors.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Wallet/WalletGreen.cpp b/src/Wallet/WalletGreen.cpp index 3cf062eae..71c173272 100644 --- a/src/Wallet/WalletGreen.cpp +++ b/src/Wallet/WalletGreen.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Wallet/WalletGreen.h b/src/Wallet/WalletGreen.h index 3ee8bcec7..921ef0b59 100644 --- a/src/Wallet/WalletGreen.h +++ b/src/Wallet/WalletGreen.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Wallet/WalletIndices.h b/src/Wallet/WalletIndices.h index 246cb878d..942a308ac 100644 --- a/src/Wallet/WalletIndices.h +++ b/src/Wallet/WalletIndices.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Wallet/WalletRpcServer.cpp b/src/Wallet/WalletRpcServer.cpp index dba01edf0..54a7fec7e 100644 --- a/src/Wallet/WalletRpcServer.cpp +++ b/src/Wallet/WalletRpcServer.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Wallet/WalletRpcServer.h b/src/Wallet/WalletRpcServer.h index 99adbfd9c..87af02ed4 100644 --- a/src/Wallet/WalletRpcServer.h +++ b/src/Wallet/WalletRpcServer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Wallet/WalletRpcServerCommandsDefinitions.h b/src/Wallet/WalletRpcServerCommandsDefinitions.h index a8a382c45..fee7858a4 100644 --- a/src/Wallet/WalletRpcServerCommandsDefinitions.h +++ b/src/Wallet/WalletRpcServerCommandsDefinitions.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Wallet/WalletRpcServerErrorCodes.h b/src/Wallet/WalletRpcServerErrorCodes.h index 10dce7c71..d7ce2c49b 100644 --- a/src/Wallet/WalletRpcServerErrorCodes.h +++ b/src/Wallet/WalletRpcServerErrorCodes.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Wallet/WalletSerializationV1.cpp b/src/Wallet/WalletSerializationV1.cpp index ab5f9dacf..07496ea78 100644 --- a/src/Wallet/WalletSerializationV1.cpp +++ b/src/Wallet/WalletSerializationV1.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Wallet/WalletSerializationV1.h b/src/Wallet/WalletSerializationV1.h index 132142817..9513f9391 100644 --- a/src/Wallet/WalletSerializationV1.h +++ b/src/Wallet/WalletSerializationV1.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Wallet/WalletUtils.cpp b/src/Wallet/WalletUtils.cpp index e0ae5dc3f..0fc2831b2 100644 --- a/src/Wallet/WalletUtils.cpp +++ b/src/Wallet/WalletUtils.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/Wallet/WalletUtils.h b/src/Wallet/WalletUtils.h index 0caac4399..1f9a55663 100644 --- a/src/Wallet/WalletUtils.h +++ b/src/Wallet/WalletUtils.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/WalletLegacy/KeysStorage.cpp b/src/WalletLegacy/KeysStorage.cpp index 51fe049ff..0f18e9694 100644 --- a/src/WalletLegacy/KeysStorage.cpp +++ b/src/WalletLegacy/KeysStorage.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/WalletLegacy/KeysStorage.h b/src/WalletLegacy/KeysStorage.h index 90cf3e7fc..e0560d7f3 100644 --- a/src/WalletLegacy/KeysStorage.h +++ b/src/WalletLegacy/KeysStorage.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -9,6 +9,7 @@ #include "crypto/crypto.h" +#include #include namespace cn { diff --git a/src/WalletLegacy/WalletDepositInfo.h b/src/WalletLegacy/WalletDepositInfo.h index 7e42810e2..c23d89b1f 100644 --- a/src/WalletLegacy/WalletDepositInfo.h +++ b/src/WalletLegacy/WalletDepositInfo.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Copyright (c) 2017-2018 The Circle Foundation - Conceal Developers // Distributed under the MIT/X11 software license, see the accompanying diff --git a/src/WalletLegacy/WalletHelper.cpp b/src/WalletLegacy/WalletHelper.cpp index 831c2479a..18db0878e 100644 --- a/src/WalletLegacy/WalletHelper.cpp +++ b/src/WalletLegacy/WalletHelper.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/WalletLegacy/WalletHelper.h b/src/WalletLegacy/WalletHelper.h index e6ad6ce29..c3603b421 100644 --- a/src/WalletLegacy/WalletHelper.h +++ b/src/WalletLegacy/WalletHelper.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/WalletLegacy/WalletLegacy.cpp b/src/WalletLegacy/WalletLegacy.cpp index 6a8a8127b..fe621b99b 100644 --- a/src/WalletLegacy/WalletLegacy.cpp +++ b/src/WalletLegacy/WalletLegacy.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/WalletLegacy/WalletLegacy.h b/src/WalletLegacy/WalletLegacy.h index 23c035ef7..b3fa58f25 100644 --- a/src/WalletLegacy/WalletLegacy.h +++ b/src/WalletLegacy/WalletLegacy.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/WalletLegacy/WalletLegacyEvent.h b/src/WalletLegacy/WalletLegacyEvent.h index 2dbcbe251..8895eb788 100644 --- a/src/WalletLegacy/WalletLegacyEvent.h +++ b/src/WalletLegacy/WalletLegacyEvent.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/WalletLegacy/WalletLegacySerialization.cpp b/src/WalletLegacy/WalletLegacySerialization.cpp index c136c75c0..0044dbeb3 100644 --- a/src/WalletLegacy/WalletLegacySerialization.cpp +++ b/src/WalletLegacy/WalletLegacySerialization.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/WalletLegacy/WalletLegacySerialization.h b/src/WalletLegacy/WalletLegacySerialization.h index e890d3731..5015a961c 100644 --- a/src/WalletLegacy/WalletLegacySerialization.h +++ b/src/WalletLegacy/WalletLegacySerialization.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/WalletLegacy/WalletLegacySerializer.cpp b/src/WalletLegacy/WalletLegacySerializer.cpp index a6c9454fd..81f0847ce 100644 --- a/src/WalletLegacy/WalletLegacySerializer.cpp +++ b/src/WalletLegacy/WalletLegacySerializer.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/WalletLegacy/WalletLegacySerializer.h b/src/WalletLegacy/WalletLegacySerializer.h index 78b982c04..268eb219c 100644 --- a/src/WalletLegacy/WalletLegacySerializer.h +++ b/src/WalletLegacy/WalletLegacySerializer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/WalletLegacy/WalletRequest.h b/src/WalletLegacy/WalletRequest.h index 4e94542ee..ecde87438 100644 --- a/src/WalletLegacy/WalletRequest.h +++ b/src/WalletLegacy/WalletRequest.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/WalletLegacy/WalletSendTransactionContext.h b/src/WalletLegacy/WalletSendTransactionContext.h index 0cd4118d9..06abaeea9 100644 --- a/src/WalletLegacy/WalletSendTransactionContext.h +++ b/src/WalletLegacy/WalletSendTransactionContext.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/WalletLegacy/WalletTransactionSender.cpp b/src/WalletLegacy/WalletTransactionSender.cpp index 19b0cd66f..4b87ff21b 100644 --- a/src/WalletLegacy/WalletTransactionSender.cpp +++ b/src/WalletLegacy/WalletTransactionSender.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/WalletLegacy/WalletTransactionSender.h b/src/WalletLegacy/WalletTransactionSender.h index 8dd2e6ac4..a4cea6a8b 100644 --- a/src/WalletLegacy/WalletTransactionSender.h +++ b/src/WalletLegacy/WalletTransactionSender.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/WalletLegacy/WalletUnconfirmedTransactions.cpp b/src/WalletLegacy/WalletUnconfirmedTransactions.cpp index c79249ed2..fc2fb3097 100644 --- a/src/WalletLegacy/WalletUnconfirmedTransactions.cpp +++ b/src/WalletLegacy/WalletUnconfirmedTransactions.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/WalletLegacy/WalletUnconfirmedTransactions.h b/src/WalletLegacy/WalletUnconfirmedTransactions.h index 9c2be7aea..eca37797d 100644 --- a/src/WalletLegacy/WalletUnconfirmedTransactions.h +++ b/src/WalletLegacy/WalletUnconfirmedTransactions.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/WalletLegacy/WalletUserTransactionsCache.cpp b/src/WalletLegacy/WalletUserTransactionsCache.cpp index ded08b1e5..4148aa833 100644 --- a/src/WalletLegacy/WalletUserTransactionsCache.cpp +++ b/src/WalletLegacy/WalletUserTransactionsCache.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/WalletLegacy/WalletUserTransactionsCache.h b/src/WalletLegacy/WalletUserTransactionsCache.h index 1941979f9..11dfbddcf 100644 --- a/src/WalletLegacy/WalletUserTransactionsCache.h +++ b/src/WalletLegacy/WalletUserTransactionsCache.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/WalletLegacy/WalletUtils.h b/src/WalletLegacy/WalletUtils.h index 725536264..779e15a18 100644 --- a/src/WalletLegacy/WalletUtils.h +++ b/src/WalletLegacy/WalletUtils.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/crypto/crypto-ops-data.c b/src/crypto/crypto-ops-data.c index 72959c72b..8662746c3 100644 --- a/src/crypto/crypto-ops-data.c +++ b/src/crypto/crypto-ops-data.c @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/crypto/crypto-ops.c b/src/crypto/crypto-ops.c index 7f7da6661..7d359e487 100644 --- a/src/crypto/crypto-ops.c +++ b/src/crypto/crypto-ops.c @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/crypto/crypto.cpp b/src/crypto/crypto.cpp index 090408022..3f34c23bd 100644 --- a/src/crypto/crypto.cpp +++ b/src/crypto/crypto.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/crypto/crypto.h b/src/crypto/crypto.h index 5b85ec2f2..be4829cdc 100644 --- a/src/crypto/crypto.h +++ b/src/crypto/crypto.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/crypto/generic-ops.h b/src/crypto/generic-ops.h index 727ffc8df..bd6f417f0 100644 --- a/src/crypto/generic-ops.h +++ b/src/crypto/generic-ops.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/crypto/hash-ops.h b/src/crypto/hash-ops.h index f556c3a50..0189770e6 100644 --- a/src/crypto/hash-ops.h +++ b/src/crypto/hash-ops.h @@ -1,6 +1,6 @@ // Copyright (c) 2012-2016, The CryptoNote developers, The Bytecoin developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/crypto/hash.c b/src/crypto/hash.c index 5ccf6dfc2..005296cbe 100644 --- a/src/crypto/hash.c +++ b/src/crypto/hash.c @@ -1,6 +1,6 @@ // Copyright (c) 2012-2016, The CryptoNote developers, The Bytecoin developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/crypto/hash.h b/src/crypto/hash.h index 8787e093e..d34f1de6c 100644 --- a/src/crypto/hash.h +++ b/src/crypto/hash.h @@ -1,6 +1,6 @@ // Copyright (c) 2012-2016, The CryptoNote developers, The Bytecoin developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/crypto/initializer.h b/src/crypto/initializer.h index 720c0e56d..43ed141a0 100644 --- a/src/crypto/initializer.h +++ b/src/crypto/initializer.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/crypto/random.c b/src/crypto/random.c index 8fea85152..49a6187c1 100644 --- a/src/crypto/random.c +++ b/src/crypto/random.c @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/crypto/random.h b/src/crypto/random.h index 833a79f1c..e3598a4f9 100644 --- a/src/crypto/random.h +++ b/src/crypto/random.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/crypto/tree-hash.c b/src/crypto/tree-hash.c index 8d6c7be38..c187de51c 100644 --- a/src/crypto/tree-hash.c +++ b/src/crypto/tree-hash.c @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/AccountBoostSerialization.h b/tests/CoreTests/AccountBoostSerialization.h index 30bb38474..71ae080d6 100644 --- a/tests/CoreTests/AccountBoostSerialization.h +++ b/tests/CoreTests/AccountBoostSerialization.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/BlockReward.cpp b/tests/CoreTests/BlockReward.cpp index ffec5d629..c99d0c70b 100644 --- a/tests/CoreTests/BlockReward.cpp +++ b/tests/CoreTests/BlockReward.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/BlockReward.h b/tests/CoreTests/BlockReward.h index cdb670bbd..3f4b9bccb 100644 --- a/tests/CoreTests/BlockReward.h +++ b/tests/CoreTests/BlockReward.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/BlockValidation.cpp b/tests/CoreTests/BlockValidation.cpp index 854cff8ba..24f9e05e3 100644 --- a/tests/CoreTests/BlockValidation.cpp +++ b/tests/CoreTests/BlockValidation.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/BlockValidation.h b/tests/CoreTests/BlockValidation.h index 6afdb0e72..2ded8d003 100644 --- a/tests/CoreTests/BlockValidation.h +++ b/tests/CoreTests/BlockValidation.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/BoostSerializationHelper.h b/tests/CoreTests/BoostSerializationHelper.h index 813d25299..433a3fd39 100644 --- a/tests/CoreTests/BoostSerializationHelper.h +++ b/tests/CoreTests/BoostSerializationHelper.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/ChainSplit1.cpp b/tests/CoreTests/ChainSplit1.cpp index a9ce58b64..a70b8cb29 100644 --- a/tests/CoreTests/ChainSplit1.cpp +++ b/tests/CoreTests/ChainSplit1.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/ChainSplit1.h b/tests/CoreTests/ChainSplit1.h index 7484828ce..e4a723edd 100644 --- a/tests/CoreTests/ChainSplit1.h +++ b/tests/CoreTests/ChainSplit1.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/ChainSwitch1.cpp b/tests/CoreTests/ChainSwitch1.cpp index 4c77a9718..900d7ee02 100644 --- a/tests/CoreTests/ChainSwitch1.cpp +++ b/tests/CoreTests/ChainSwitch1.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/ChainSwitch1.h b/tests/CoreTests/ChainSwitch1.h index a4c5f7251..e06d7df34 100644 --- a/tests/CoreTests/ChainSwitch1.h +++ b/tests/CoreTests/ChainSwitch1.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/Chaingen.cpp b/tests/CoreTests/Chaingen.cpp index c90b45fa7..edb4d73d7 100644 --- a/tests/CoreTests/Chaingen.cpp +++ b/tests/CoreTests/Chaingen.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/Chaingen.h b/tests/CoreTests/Chaingen.h index ec61b5cec..df514ca86 100644 --- a/tests/CoreTests/Chaingen.h +++ b/tests/CoreTests/Chaingen.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/Chaingen001.cpp b/tests/CoreTests/Chaingen001.cpp index 7d7823a3a..4dbf065c0 100644 --- a/tests/CoreTests/Chaingen001.cpp +++ b/tests/CoreTests/Chaingen001.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/Chaingen001.h b/tests/CoreTests/Chaingen001.h index e7dc4e5c5..0168f2b54 100644 --- a/tests/CoreTests/Chaingen001.h +++ b/tests/CoreTests/Chaingen001.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/ChaingenMain.cpp b/tests/CoreTests/ChaingenMain.cpp index 7a7950176..9eeee40ec 100644 --- a/tests/CoreTests/ChaingenMain.cpp +++ b/tests/CoreTests/ChaingenMain.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/CryptoNoteBoostSerialization.h b/tests/CoreTests/CryptoNoteBoostSerialization.h index 7c4069045..5cb225e45 100644 --- a/tests/CoreTests/CryptoNoteBoostSerialization.h +++ b/tests/CoreTests/CryptoNoteBoostSerialization.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/Deposit.cpp b/tests/CoreTests/Deposit.cpp index 5ce6a8737..2cdf915b4 100644 --- a/tests/CoreTests/Deposit.cpp +++ b/tests/CoreTests/Deposit.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/Deposit.h b/tests/CoreTests/Deposit.h index ddf38334a..05bd5e8ba 100644 --- a/tests/CoreTests/Deposit.h +++ b/tests/CoreTests/Deposit.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/DoubleSpend.cpp b/tests/CoreTests/DoubleSpend.cpp index 3bca3bed2..78cf5ff9f 100644 --- a/tests/CoreTests/DoubleSpend.cpp +++ b/tests/CoreTests/DoubleSpend.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/DoubleSpend.h b/tests/CoreTests/DoubleSpend.h index 3ea19fafa..e98663d25 100644 --- a/tests/CoreTests/DoubleSpend.h +++ b/tests/CoreTests/DoubleSpend.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/IntegerOverflow.cpp b/tests/CoreTests/IntegerOverflow.cpp index 9188432c4..0e3e9f012 100644 --- a/tests/CoreTests/IntegerOverflow.cpp +++ b/tests/CoreTests/IntegerOverflow.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/IntegerOverflow.h b/tests/CoreTests/IntegerOverflow.h index b2698ca66..cc5a41c2b 100644 --- a/tests/CoreTests/IntegerOverflow.h +++ b/tests/CoreTests/IntegerOverflow.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/RandomOuts.cpp b/tests/CoreTests/RandomOuts.cpp index 4f6805bac..c17b724ec 100644 --- a/tests/CoreTests/RandomOuts.cpp +++ b/tests/CoreTests/RandomOuts.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/RandomOuts.h b/tests/CoreTests/RandomOuts.h index 9af65a07f..54f1a8099 100644 --- a/tests/CoreTests/RandomOuts.h +++ b/tests/CoreTests/RandomOuts.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/RingSignature.cpp b/tests/CoreTests/RingSignature.cpp index 49d064b65..89dd26154 100644 --- a/tests/CoreTests/RingSignature.cpp +++ b/tests/CoreTests/RingSignature.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/RingSignature.h b/tests/CoreTests/RingSignature.h index a6b7f2534..cb71c0e63 100644 --- a/tests/CoreTests/RingSignature.h +++ b/tests/CoreTests/RingSignature.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/TestGenerator.h b/tests/CoreTests/TestGenerator.h index 73190dcf8..54e592639 100644 --- a/tests/CoreTests/TestGenerator.h +++ b/tests/CoreTests/TestGenerator.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/TransactionBuilder.cpp b/tests/CoreTests/TransactionBuilder.cpp index de1296f48..3cd9d3752 100644 --- a/tests/CoreTests/TransactionBuilder.cpp +++ b/tests/CoreTests/TransactionBuilder.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/TransactionBuilder.h b/tests/CoreTests/TransactionBuilder.h index 48ad469de..692b83145 100644 --- a/tests/CoreTests/TransactionBuilder.h +++ b/tests/CoreTests/TransactionBuilder.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/TransactionTests.cpp b/tests/CoreTests/TransactionTests.cpp index f813a83d6..a349a7a45 100644 --- a/tests/CoreTests/TransactionTests.cpp +++ b/tests/CoreTests/TransactionTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/TransactionTests.h b/tests/CoreTests/TransactionTests.h index 3409eca37..abb27be1c 100644 --- a/tests/CoreTests/TransactionTests.h +++ b/tests/CoreTests/TransactionTests.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/TransactionValidation.cpp b/tests/CoreTests/TransactionValidation.cpp index f6949a8d8..35f1e40e8 100644 --- a/tests/CoreTests/TransactionValidation.cpp +++ b/tests/CoreTests/TransactionValidation.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/TransactionValidation.h b/tests/CoreTests/TransactionValidation.h index e28d8c513..da184ae9d 100644 --- a/tests/CoreTests/TransactionValidation.h +++ b/tests/CoreTests/TransactionValidation.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/UnorderedContainersBoostSerialization.h b/tests/CoreTests/UnorderedContainersBoostSerialization.h index 712aee1b2..2dfb1e3d6 100644 --- a/tests/CoreTests/UnorderedContainersBoostSerialization.h +++ b/tests/CoreTests/UnorderedContainersBoostSerialization.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/Upgrade.cpp b/tests/CoreTests/Upgrade.cpp index 78e0361f1..226cf9a4f 100644 --- a/tests/CoreTests/Upgrade.cpp +++ b/tests/CoreTests/Upgrade.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/Upgrade.h b/tests/CoreTests/Upgrade.h index 53d035d50..762b1a72a 100644 --- a/tests/CoreTests/Upgrade.h +++ b/tests/CoreTests/Upgrade.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/CoreTests/double_spend.inl b/tests/CoreTests/double_spend.inl index 4e6f72b42..2cad5046f 100644 --- a/tests/CoreTests/double_spend.inl +++ b/tests/CoreTests/double_spend.inl @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/Difficulty/Difficulty.cpp b/tests/Difficulty/Difficulty.cpp index 1b5b0b795..8ab14f2e0 100644 --- a/tests/Difficulty/Difficulty.cpp +++ b/tests/Difficulty/Difficulty.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/Hash/main.cpp b/tests/Hash/main.cpp index e4d4068b9..78f201c1c 100644 --- a/tests/Hash/main.cpp +++ b/tests/Hash/main.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/HashTarget.cpp b/tests/HashTarget.cpp index e7cd47bf1..cea1f4b90 100644 --- a/tests/HashTarget.cpp +++ b/tests/HashTarget.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTestLib/BaseFunctionalTests.cpp b/tests/IntegrationTestLib/BaseFunctionalTests.cpp index 3c083c6d1..4317c2a8a 100644 --- a/tests/IntegrationTestLib/BaseFunctionalTests.cpp +++ b/tests/IntegrationTestLib/BaseFunctionalTests.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTestLib/BaseFunctionalTests.h b/tests/IntegrationTestLib/BaseFunctionalTests.h index 3a89240a2..e6ef34070 100644 --- a/tests/IntegrationTestLib/BaseFunctionalTests.h +++ b/tests/IntegrationTestLib/BaseFunctionalTests.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTestLib/InProcTestNode.cpp b/tests/IntegrationTestLib/InProcTestNode.cpp index 9501a098f..38ebd9404 100644 --- a/tests/IntegrationTestLib/InProcTestNode.cpp +++ b/tests/IntegrationTestLib/InProcTestNode.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTestLib/InProcTestNode.h b/tests/IntegrationTestLib/InProcTestNode.h index 03b03a716..84a9201fd 100644 --- a/tests/IntegrationTestLib/InProcTestNode.h +++ b/tests/IntegrationTestLib/InProcTestNode.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTestLib/Logger.cpp b/tests/IntegrationTestLib/Logger.cpp index 0b58efaee..f7c95d964 100644 --- a/tests/IntegrationTestLib/Logger.cpp +++ b/tests/IntegrationTestLib/Logger.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTestLib/Logger.h b/tests/IntegrationTestLib/Logger.h index 4cfd72345..3798a9280 100644 --- a/tests/IntegrationTestLib/Logger.h +++ b/tests/IntegrationTestLib/Logger.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTestLib/NetworkConfiguration.h b/tests/IntegrationTestLib/NetworkConfiguration.h index 15c0b0a8b..9c4a0660a 100644 --- a/tests/IntegrationTestLib/NetworkConfiguration.h +++ b/tests/IntegrationTestLib/NetworkConfiguration.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTestLib/NodeCallback.h b/tests/IntegrationTestLib/NodeCallback.h index a25bdd492..059920216 100644 --- a/tests/IntegrationTestLib/NodeCallback.h +++ b/tests/IntegrationTestLib/NodeCallback.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTestLib/NodeObserver.h b/tests/IntegrationTestLib/NodeObserver.h index 522bcdf6f..6796cacac 100644 --- a/tests/IntegrationTestLib/NodeObserver.h +++ b/tests/IntegrationTestLib/NodeObserver.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTestLib/ObservableValue.h b/tests/IntegrationTestLib/ObservableValue.h index 212834970..811b75397 100644 --- a/tests/IntegrationTestLib/ObservableValue.h +++ b/tests/IntegrationTestLib/ObservableValue.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTestLib/Process.cpp b/tests/IntegrationTestLib/Process.cpp index 487aa4abf..86f091cdc 100644 --- a/tests/IntegrationTestLib/Process.cpp +++ b/tests/IntegrationTestLib/Process.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTestLib/Process.h b/tests/IntegrationTestLib/Process.h index 8f81a5d3a..3c6c52bff 100644 --- a/tests/IntegrationTestLib/Process.h +++ b/tests/IntegrationTestLib/Process.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTestLib/RPCTestNode.cpp b/tests/IntegrationTestLib/RPCTestNode.cpp index 9316befe9..9bc628481 100644 --- a/tests/IntegrationTestLib/RPCTestNode.cpp +++ b/tests/IntegrationTestLib/RPCTestNode.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTestLib/RPCTestNode.h b/tests/IntegrationTestLib/RPCTestNode.h index 8c4373946..6eaa300c3 100644 --- a/tests/IntegrationTestLib/RPCTestNode.h +++ b/tests/IntegrationTestLib/RPCTestNode.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTestLib/TestNetwork.cpp b/tests/IntegrationTestLib/TestNetwork.cpp index b38c49078..49dfb1970 100644 --- a/tests/IntegrationTestLib/TestNetwork.cpp +++ b/tests/IntegrationTestLib/TestNetwork.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTestLib/TestNetwork.h b/tests/IntegrationTestLib/TestNetwork.h index c283b794b..231c8826f 100644 --- a/tests/IntegrationTestLib/TestNetwork.h +++ b/tests/IntegrationTestLib/TestNetwork.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTestLib/TestNode.h b/tests/IntegrationTestLib/TestNode.h index 9386c91a7..3c9e33d1d 100644 --- a/tests/IntegrationTestLib/TestNode.h +++ b/tests/IntegrationTestLib/TestNode.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTestLib/TestWalletLegacy.cpp b/tests/IntegrationTestLib/TestWalletLegacy.cpp index 8c38f02ab..17b7dd8ad 100644 --- a/tests/IntegrationTestLib/TestWalletLegacy.cpp +++ b/tests/IntegrationTestLib/TestWalletLegacy.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTestLib/TestWalletLegacy.h b/tests/IntegrationTestLib/TestWalletLegacy.h index b0c7469c7..3c5d3a257 100644 --- a/tests/IntegrationTestLib/TestWalletLegacy.h +++ b/tests/IntegrationTestLib/TestWalletLegacy.h @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTests/BaseTests.h b/tests/IntegrationTests/BaseTests.h index ade259269..37a469c14 100644 --- a/tests/IntegrationTests/BaseTests.h +++ b/tests/IntegrationTests/BaseTests.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTests/IntegrationTests.cpp b/tests/IntegrationTests/IntegrationTests.cpp index e573a91b9..ac2f82e4a 100644 --- a/tests/IntegrationTests/IntegrationTests.cpp +++ b/tests/IntegrationTests/IntegrationTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTests/MultiVersion.cpp b/tests/IntegrationTests/MultiVersion.cpp index 49c8177bc..962569fa1 100644 --- a/tests/IntegrationTests/MultiVersion.cpp +++ b/tests/IntegrationTests/MultiVersion.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTests/Node.cpp b/tests/IntegrationTests/Node.cpp index e287f665a..19d3da75e 100644 --- a/tests/IntegrationTests/Node.cpp +++ b/tests/IntegrationTests/Node.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTests/WalletLegacyObserver.h b/tests/IntegrationTests/WalletLegacyObserver.h index 01618ec43..0ecc66139 100644 --- a/tests/IntegrationTests/WalletLegacyObserver.h +++ b/tests/IntegrationTests/WalletLegacyObserver.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTests/WalletLegacyTests.cpp b/tests/IntegrationTests/WalletLegacyTests.cpp index 010a4a9cd..7b8a4b486 100644 --- a/tests/IntegrationTests/WalletLegacyTests.cpp +++ b/tests/IntegrationTests/WalletLegacyTests.cpp @@ -1,6 +1,6 @@ // Copyright (c) 2011-2017 The Cryptonote developers // Copyright (c) 2017-2018 The Circle Foundation & Conceal Devs -// Copyright (c) 2018-2022 Conceal Network & Conceal Devs +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/IntegrationTests/main.cpp b/tests/IntegrationTests/main.cpp index 08b3386a9..d6d659b3c 100644 --- a/tests/IntegrationTests/main.cpp +++ b/tests/IntegrationTests/main.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/Io.h b/tests/Io.h index 06b5be40f..211a4d65f 100644 --- a/tests/Io.h +++ b/tests/Io.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/NodeRpcProxyTests/NodeRpcProxyTests.cpp b/tests/NodeRpcProxyTests/NodeRpcProxyTests.cpp index db5cbbef4..e60cb53bf 100644 --- a/tests/NodeRpcProxyTests/NodeRpcProxyTests.cpp +++ b/tests/NodeRpcProxyTests/NodeRpcProxyTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/PerformanceTests/CheckRingSignature.h b/tests/PerformanceTests/CheckRingSignature.h index 82a19670a..92a20a65a 100644 --- a/tests/PerformanceTests/CheckRingSignature.h +++ b/tests/PerformanceTests/CheckRingSignature.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/PerformanceTests/ConstructTransaction.h b/tests/PerformanceTests/ConstructTransaction.h index 7ceb21e40..73ac4c619 100644 --- a/tests/PerformanceTests/ConstructTransaction.h +++ b/tests/PerformanceTests/ConstructTransaction.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/PerformanceTests/CryptoNoteSlowHash.h b/tests/PerformanceTests/CryptoNoteSlowHash.h index 2c71e0947..0914aa701 100644 --- a/tests/PerformanceTests/CryptoNoteSlowHash.h +++ b/tests/PerformanceTests/CryptoNoteSlowHash.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/PerformanceTests/DerivePublicKey.h b/tests/PerformanceTests/DerivePublicKey.h index 1d83b5215..91c967bfb 100644 --- a/tests/PerformanceTests/DerivePublicKey.h +++ b/tests/PerformanceTests/DerivePublicKey.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/PerformanceTests/DeriveSecretKey.h b/tests/PerformanceTests/DeriveSecretKey.h index 597e07473..68e657fb2 100644 --- a/tests/PerformanceTests/DeriveSecretKey.h +++ b/tests/PerformanceTests/DeriveSecretKey.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/PerformanceTests/GenerateKeyDerivation.h b/tests/PerformanceTests/GenerateKeyDerivation.h index e1367fbbc..30e72cb4e 100644 --- a/tests/PerformanceTests/GenerateKeyDerivation.h +++ b/tests/PerformanceTests/GenerateKeyDerivation.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/PerformanceTests/GenerateKeyImage.h b/tests/PerformanceTests/GenerateKeyImage.h index 3bbccfc94..7bc7d63a0 100644 --- a/tests/PerformanceTests/GenerateKeyImage.h +++ b/tests/PerformanceTests/GenerateKeyImage.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/PerformanceTests/GenerateKeyImageHelper.h b/tests/PerformanceTests/GenerateKeyImageHelper.h index ed0fafa56..4bdeb8151 100644 --- a/tests/PerformanceTests/GenerateKeyImageHelper.h +++ b/tests/PerformanceTests/GenerateKeyImageHelper.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/PerformanceTests/IsOutToAccount.h b/tests/PerformanceTests/IsOutToAccount.h index 0d3706414..000d56f82 100644 --- a/tests/PerformanceTests/IsOutToAccount.h +++ b/tests/PerformanceTests/IsOutToAccount.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/PerformanceTests/MultiTransactionTestBase.h b/tests/PerformanceTests/MultiTransactionTestBase.h index cd7517620..26f2ddb95 100644 --- a/tests/PerformanceTests/MultiTransactionTestBase.h +++ b/tests/PerformanceTests/MultiTransactionTestBase.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/PerformanceTests/PerformanceTests.h b/tests/PerformanceTests/PerformanceTests.h index dfd17c5f3..f19ddd40f 100644 --- a/tests/PerformanceTests/PerformanceTests.h +++ b/tests/PerformanceTests/PerformanceTests.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/PerformanceTests/PerformanceUtils.h b/tests/PerformanceTests/PerformanceUtils.h index a9080fc3d..2c2972867 100644 --- a/tests/PerformanceTests/PerformanceUtils.h +++ b/tests/PerformanceTests/PerformanceUtils.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/PerformanceTests/SingleTransactionTestBase.h b/tests/PerformanceTests/SingleTransactionTestBase.h index b4ae9bb50..e54d38e25 100644 --- a/tests/PerformanceTests/SingleTransactionTestBase.h +++ b/tests/PerformanceTests/SingleTransactionTestBase.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/PerformanceTests/main.cpp b/tests/PerformanceTests/main.cpp index c0784dcba..15b127154 100644 --- a/tests/PerformanceTests/main.cpp +++ b/tests/PerformanceTests/main.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/System/ContextGroupTests.cpp b/tests/System/ContextGroupTests.cpp index 9ee87e76f..f77395b13 100644 --- a/tests/System/ContextGroupTests.cpp +++ b/tests/System/ContextGroupTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/System/ContextGroupTimeoutTests.cpp b/tests/System/ContextGroupTimeoutTests.cpp index 71254b608..5e05ff6ca 100644 --- a/tests/System/ContextGroupTimeoutTests.cpp +++ b/tests/System/ContextGroupTimeoutTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/System/ContextTests.cpp b/tests/System/ContextTests.cpp index 4e8638923..8c2141c03 100644 --- a/tests/System/ContextTests.cpp +++ b/tests/System/ContextTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/System/DispatcherTests.cpp b/tests/System/DispatcherTests.cpp index 1e549b5b3..b55baa4ca 100644 --- a/tests/System/DispatcherTests.cpp +++ b/tests/System/DispatcherTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/System/ErrorMessageTests.cpp b/tests/System/ErrorMessageTests.cpp index 8859c3fd4..1dd6c84d4 100644 --- a/tests/System/ErrorMessageTests.cpp +++ b/tests/System/ErrorMessageTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/System/EventLockTests.cpp b/tests/System/EventLockTests.cpp index 0d43b5640..745c78a3a 100644 --- a/tests/System/EventLockTests.cpp +++ b/tests/System/EventLockTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/System/EventTests.cpp b/tests/System/EventTests.cpp index bebf9572b..77c70d55d 100644 --- a/tests/System/EventTests.cpp +++ b/tests/System/EventTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/System/Ipv4AddressTests.cpp b/tests/System/Ipv4AddressTests.cpp index 1ff38df05..255c31249 100644 --- a/tests/System/Ipv4AddressTests.cpp +++ b/tests/System/Ipv4AddressTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/System/Ipv4ResolverTests.cpp b/tests/System/Ipv4ResolverTests.cpp index ac4258f42..98367af00 100644 --- a/tests/System/Ipv4ResolverTests.cpp +++ b/tests/System/Ipv4ResolverTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/System/OperationTimeoutTests.cpp b/tests/System/OperationTimeoutTests.cpp index bc4dc73ea..4f3e4d286 100644 --- a/tests/System/OperationTimeoutTests.cpp +++ b/tests/System/OperationTimeoutTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/System/RemoteContextTests.cpp b/tests/System/RemoteContextTests.cpp index e552b43ed..6497a859e 100644 --- a/tests/System/RemoteContextTests.cpp +++ b/tests/System/RemoteContextTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/System/TcpConnectionTests.cpp b/tests/System/TcpConnectionTests.cpp index e6b4c304e..6b02c627a 100644 --- a/tests/System/TcpConnectionTests.cpp +++ b/tests/System/TcpConnectionTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/System/TcpConnectorTests.cpp b/tests/System/TcpConnectorTests.cpp index f8000a62d..d2fccb60b 100644 --- a/tests/System/TcpConnectorTests.cpp +++ b/tests/System/TcpConnectorTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/System/TcpListenerTests.cpp b/tests/System/TcpListenerTests.cpp index 88df6023e..7e59c5150 100644 --- a/tests/System/TcpListenerTests.cpp +++ b/tests/System/TcpListenerTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/System/TimerTests.cpp b/tests/System/TimerTests.cpp index 54014248d..9feeba897 100644 --- a/tests/System/TimerTests.cpp +++ b/tests/System/TimerTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/System/main.cpp b/tests/System/main.cpp index 9de580e05..aa0c50d43 100644 --- a/tests/System/main.cpp +++ b/tests/System/main.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/TestGenerator/TestGenerator.cpp b/tests/TestGenerator/TestGenerator.cpp index 24bc3c2dc..2478df8e1 100644 --- a/tests/TestGenerator/TestGenerator.cpp +++ b/tests/TestGenerator/TestGenerator.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/TestGenerator/TestGenerator.h b/tests/TestGenerator/TestGenerator.h index 0482fcbd4..0004aa422 100644 --- a/tests/TestGenerator/TestGenerator.h +++ b/tests/TestGenerator/TestGenerator.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/TransfersTests/Globals.h b/tests/TransfersTests/Globals.h index b546f3ccf..b2c6fa626 100644 --- a/tests/TransfersTests/Globals.h +++ b/tests/TransfersTests/Globals.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/TransfersTests/TestNodeRpcProxy.cpp b/tests/TransfersTests/TestNodeRpcProxy.cpp index e702549be..e0b4dbc7d 100644 --- a/tests/TransfersTests/TestNodeRpcProxy.cpp +++ b/tests/TransfersTests/TestNodeRpcProxy.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/TransfersTests/TestTxPoolSync.cpp b/tests/TransfersTests/TestTxPoolSync.cpp index bdf9d0e62..a9d22aa3e 100644 --- a/tests/TransfersTests/TestTxPoolSync.cpp +++ b/tests/TransfersTests/TestTxPoolSync.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/TransfersTests/Tests.cpp b/tests/TransfersTests/Tests.cpp index 8964b484c..e58b9ed9a 100644 --- a/tests/TransfersTests/Tests.cpp +++ b/tests/TransfersTests/Tests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/TransfersTests/main.cpp b/tests/TransfersTests/main.cpp index cd1b7ffd4..01fcd18bb 100644 --- a/tests/TransfersTests/main.cpp +++ b/tests/TransfersTests/main.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/ArrayRefTests.cpp b/tests/UnitTests/ArrayRefTests.cpp index 752a14c40..749b74c52 100644 --- a/tests/UnitTests/ArrayRefTests.cpp +++ b/tests/UnitTests/ArrayRefTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/ArrayViewTests.cpp b/tests/UnitTests/ArrayViewTests.cpp index 3dc8fd933..665fd3e13 100644 --- a/tests/UnitTests/ArrayViewTests.cpp +++ b/tests/UnitTests/ArrayViewTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/Base58.cpp b/tests/UnitTests/Base58.cpp index beabcdfbc..647bac9a7 100644 --- a/tests/UnitTests/Base58.cpp +++ b/tests/UnitTests/Base58.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/BlockReward.cpp b/tests/UnitTests/BlockReward.cpp index 4f9af92fd..b3f5c619b 100644 --- a/tests/UnitTests/BlockReward.cpp +++ b/tests/UnitTests/BlockReward.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/BlockingQueue.cpp b/tests/UnitTests/BlockingQueue.cpp index b0bb53182..dbf7a1122 100644 --- a/tests/UnitTests/BlockingQueue.cpp +++ b/tests/UnitTests/BlockingQueue.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/Chacha8.cpp b/tests/UnitTests/Chacha8.cpp index 3132c9b18..6b858811f 100644 --- a/tests/UnitTests/Chacha8.cpp +++ b/tests/UnitTests/Chacha8.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/Checkpoints.cpp b/tests/UnitTests/Checkpoints.cpp index 633c19b07..0188db3ff 100644 --- a/tests/UnitTests/Checkpoints.cpp +++ b/tests/UnitTests/Checkpoints.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/DecomposeAmountIntoDigits.cpp b/tests/UnitTests/DecomposeAmountIntoDigits.cpp index 7d32c7048..3f1ac454f 100644 --- a/tests/UnitTests/DecomposeAmountIntoDigits.cpp +++ b/tests/UnitTests/DecomposeAmountIntoDigits.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/EventWaiter.cpp b/tests/UnitTests/EventWaiter.cpp index 96678e09e..ab6774151 100644 --- a/tests/UnitTests/EventWaiter.cpp +++ b/tests/UnitTests/EventWaiter.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/EventWaiter.h b/tests/UnitTests/EventWaiter.h index 7ac9937a9..043bb76ce 100644 --- a/tests/UnitTests/EventWaiter.h +++ b/tests/UnitTests/EventWaiter.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/ICoreStub.cpp b/tests/UnitTests/ICoreStub.cpp index f07f44b63..de754050c 100644 --- a/tests/UnitTests/ICoreStub.cpp +++ b/tests/UnitTests/ICoreStub.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/ICoreStub.h b/tests/UnitTests/ICoreStub.h index c99732300..7854d3f17 100644 --- a/tests/UnitTests/ICoreStub.h +++ b/tests/UnitTests/ICoreStub.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/ICryptoNoteProtocolQueryStub.cpp b/tests/UnitTests/ICryptoNoteProtocolQueryStub.cpp index 18e77d66d..a7c6f397d 100644 --- a/tests/UnitTests/ICryptoNoteProtocolQueryStub.cpp +++ b/tests/UnitTests/ICryptoNoteProtocolQueryStub.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/ICryptoNoteProtocolQueryStub.h b/tests/UnitTests/ICryptoNoteProtocolQueryStub.h index 48733b4e1..ad97a6b6e 100644 --- a/tests/UnitTests/ICryptoNoteProtocolQueryStub.h +++ b/tests/UnitTests/ICryptoNoteProtocolQueryStub.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/INodeStubs.cpp b/tests/UnitTests/INodeStubs.cpp index 87e0a5a67..157c9eb1a 100644 --- a/tests/UnitTests/INodeStubs.cpp +++ b/tests/UnitTests/INodeStubs.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/INodeStubs.h b/tests/UnitTests/INodeStubs.h index a2262212f..9cfc014d7 100644 --- a/tests/UnitTests/INodeStubs.h +++ b/tests/UnitTests/INodeStubs.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/MulDiv.cpp b/tests/UnitTests/MulDiv.cpp index e4ed9702b..d9ad10425 100644 --- a/tests/UnitTests/MulDiv.cpp +++ b/tests/UnitTests/MulDiv.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/ParseAmount.cpp b/tests/UnitTests/ParseAmount.cpp index 790029abe..6a55f133a 100644 --- a/tests/UnitTests/ParseAmount.cpp +++ b/tests/UnitTests/ParseAmount.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/PaymentGateTests.cpp b/tests/UnitTests/PaymentGateTests.cpp index 06122b48b..fe105953d 100644 --- a/tests/UnitTests/PaymentGateTests.cpp +++ b/tests/UnitTests/PaymentGateTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/Serialization.cpp b/tests/UnitTests/Serialization.cpp index 51ae61c31..3c1596b32 100644 --- a/tests/UnitTests/Serialization.cpp +++ b/tests/UnitTests/Serialization.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/SerializationKV.cpp b/tests/UnitTests/SerializationKV.cpp index 966506dab..4f8d42cd3 100644 --- a/tests/UnitTests/SerializationKV.cpp +++ b/tests/UnitTests/SerializationKV.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/Shuffle.cpp b/tests/UnitTests/Shuffle.cpp index d6cb60058..3ef40e319 100644 --- a/tests/UnitTests/Shuffle.cpp +++ b/tests/UnitTests/Shuffle.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/StringBufferTests.cpp b/tests/UnitTests/StringBufferTests.cpp index b0627587a..9fce992dd 100644 --- a/tests/UnitTests/StringBufferTests.cpp +++ b/tests/UnitTests/StringBufferTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/StringViewTests.cpp b/tests/UnitTests/StringViewTests.cpp index 3e46c63ff..88e9ddad0 100644 --- a/tests/UnitTests/StringViewTests.cpp +++ b/tests/UnitTests/StringViewTests.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestBcS.cpp b/tests/UnitTests/TestBcS.cpp index 4074286fd..c39ad67b6 100644 --- a/tests/UnitTests/TestBcS.cpp +++ b/tests/UnitTests/TestBcS.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestBlockchainExplorer.cpp b/tests/UnitTests/TestBlockchainExplorer.cpp index 613a8358e..6c2064e15 100644 --- a/tests/UnitTests/TestBlockchainExplorer.cpp +++ b/tests/UnitTests/TestBlockchainExplorer.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestBlockchainGenerator.cpp b/tests/UnitTests/TestBlockchainGenerator.cpp index b06905301..b3ff23289 100644 --- a/tests/UnitTests/TestBlockchainGenerator.cpp +++ b/tests/UnitTests/TestBlockchainGenerator.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestBlockchainGenerator.h b/tests/UnitTests/TestBlockchainGenerator.h index 04a7d4816..05162e03a 100644 --- a/tests/UnitTests/TestBlockchainGenerator.h +++ b/tests/UnitTests/TestBlockchainGenerator.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestCryptonoteBasic.cpp b/tests/UnitTests/TestCryptonoteBasic.cpp index 2a6e6c3f7..a75dfd17d 100644 --- a/tests/UnitTests/TestCryptonoteBasic.cpp +++ b/tests/UnitTests/TestCryptonoteBasic.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestCurrency.cpp b/tests/UnitTests/TestCurrency.cpp index 4ccbb3351..fa1a40cbf 100644 --- a/tests/UnitTests/TestCurrency.cpp +++ b/tests/UnitTests/TestCurrency.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestDepositIndex.cpp b/tests/UnitTests/TestDepositIndex.cpp index f2bf73652..0f2804d36 100644 --- a/tests/UnitTests/TestDepositIndex.cpp +++ b/tests/UnitTests/TestDepositIndex.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestFormatUtils.cpp b/tests/UnitTests/TestFormatUtils.cpp index f63832938..38a02ec18 100644 --- a/tests/UnitTests/TestFormatUtils.cpp +++ b/tests/UnitTests/TestFormatUtils.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestInprocessNode.cpp b/tests/UnitTests/TestInprocessNode.cpp index 20600084b..d6a6ed3b2 100644 --- a/tests/UnitTests/TestInprocessNode.cpp +++ b/tests/UnitTests/TestInprocessNode.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestJsonValue.cpp b/tests/UnitTests/TestJsonValue.cpp index 471ec5d5a..8d52ed923 100644 --- a/tests/UnitTests/TestJsonValue.cpp +++ b/tests/UnitTests/TestJsonValue.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestMessageQueue.cpp b/tests/UnitTests/TestMessageQueue.cpp index b1186669e..2566e6c22 100644 --- a/tests/UnitTests/TestMessageQueue.cpp +++ b/tests/UnitTests/TestMessageQueue.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestPath.cpp b/tests/UnitTests/TestPath.cpp index d36ddeab7..f6214fb5c 100644 --- a/tests/UnitTests/TestPath.cpp +++ b/tests/UnitTests/TestPath.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestPeerlist.cpp b/tests/UnitTests/TestPeerlist.cpp index 8e73277a9..3879fd030 100644 --- a/tests/UnitTests/TestPeerlist.cpp +++ b/tests/UnitTests/TestPeerlist.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestProtocolPack.cpp b/tests/UnitTests/TestProtocolPack.cpp index a0e2269e9..5ff8378ee 100644 --- a/tests/UnitTests/TestProtocolPack.cpp +++ b/tests/UnitTests/TestProtocolPack.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestTransactionPoolDetach.cpp b/tests/UnitTests/TestTransactionPoolDetach.cpp index 1d69778f4..ea3266b00 100644 --- a/tests/UnitTests/TestTransactionPoolDetach.cpp +++ b/tests/UnitTests/TestTransactionPoolDetach.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestTransfers.cpp b/tests/UnitTests/TestTransfers.cpp index 30d5802ce..dba0ac55b 100644 --- a/tests/UnitTests/TestTransfers.cpp +++ b/tests/UnitTests/TestTransfers.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestTransfersConsumer.cpp b/tests/UnitTests/TestTransfersConsumer.cpp index 314022444..309f89e1e 100644 --- a/tests/UnitTests/TestTransfersConsumer.cpp +++ b/tests/UnitTests/TestTransfersConsumer.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestTransfersContainer.cpp b/tests/UnitTests/TestTransfersContainer.cpp index 7bf29a39e..cc672a830 100644 --- a/tests/UnitTests/TestTransfersContainer.cpp +++ b/tests/UnitTests/TestTransfersContainer.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestTransfersContainerKeyImage.cpp b/tests/UnitTests/TestTransfersContainerKeyImage.cpp index 9cbb2e7bd..500869fc1 100644 --- a/tests/UnitTests/TestTransfersContainerKeyImage.cpp +++ b/tests/UnitTests/TestTransfersContainerKeyImage.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestTransfersSubscription.cpp b/tests/UnitTests/TestTransfersSubscription.cpp index f19f324b6..926d5d89b 100644 --- a/tests/UnitTests/TestTransfersSubscription.cpp +++ b/tests/UnitTests/TestTransfersSubscription.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestUpgradeDetector.cpp b/tests/UnitTests/TestUpgradeDetector.cpp index d1317b732..42ade6aba 100644 --- a/tests/UnitTests/TestUpgradeDetector.cpp +++ b/tests/UnitTests/TestUpgradeDetector.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestWallet.cpp b/tests/UnitTests/TestWallet.cpp index fb11b07ff..040143824 100644 --- a/tests/UnitTests/TestWallet.cpp +++ b/tests/UnitTests/TestWallet.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestWalletLegacy.cpp b/tests/UnitTests/TestWalletLegacy.cpp index 1a33a3c00..8f973a24f 100644 --- a/tests/UnitTests/TestWalletLegacy.cpp +++ b/tests/UnitTests/TestWalletLegacy.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestWalletService.cpp b/tests/UnitTests/TestWalletService.cpp index 74c64be98..36fed3131 100644 --- a/tests/UnitTests/TestWalletService.cpp +++ b/tests/UnitTests/TestWalletService.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TestWalletUserTransactionsCache.cpp b/tests/UnitTests/TestWalletUserTransactionsCache.cpp index 590d9d559..0bbb18233 100644 --- a/tests/UnitTests/TestWalletUserTransactionsCache.cpp +++ b/tests/UnitTests/TestWalletUserTransactionsCache.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TransactionApi.cpp b/tests/UnitTests/TransactionApi.cpp index 62967aa76..2b36a44ca 100644 --- a/tests/UnitTests/TransactionApi.cpp +++ b/tests/UnitTests/TransactionApi.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TransactionApiHelpers.cpp b/tests/UnitTests/TransactionApiHelpers.cpp index 465dc482e..525d16b5a 100644 --- a/tests/UnitTests/TransactionApiHelpers.cpp +++ b/tests/UnitTests/TransactionApiHelpers.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TransactionApiHelpers.h b/tests/UnitTests/TransactionApiHelpers.h index ceb96ad81..4c632bf7a 100644 --- a/tests/UnitTests/TransactionApiHelpers.h +++ b/tests/UnitTests/TransactionApiHelpers.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TransactionPool.cpp b/tests/UnitTests/TransactionPool.cpp index 72a208a94..52078ff89 100644 --- a/tests/UnitTests/TransactionPool.cpp +++ b/tests/UnitTests/TransactionPool.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/TransfersObserver.h b/tests/UnitTests/TransfersObserver.h index a46cc39f5..07123f6c5 100644 --- a/tests/UnitTests/TransfersObserver.h +++ b/tests/UnitTests/TransfersObserver.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/UnitTestsUtils.h b/tests/UnitTests/UnitTestsUtils.h index 7f02dadab..3e1f8d17b 100644 --- a/tests/UnitTests/UnitTestsUtils.h +++ b/tests/UnitTests/UnitTestsUtils.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/UnitTests/main.cpp b/tests/UnitTests/main.cpp index 14c90e6f2..d464c4c41 100644 --- a/tests/UnitTests/main.cpp +++ b/tests/UnitTests/main.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/crypto/crypto-ops-data.c b/tests/crypto/crypto-ops-data.c index d097efadb..4b8dafa27 100644 --- a/tests/crypto/crypto-ops-data.c +++ b/tests/crypto/crypto-ops-data.c @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/crypto/crypto-ops.c b/tests/crypto/crypto-ops.c index a7e21489c..9d967777a 100644 --- a/tests/crypto/crypto-ops.c +++ b/tests/crypto/crypto-ops.c @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/crypto/crypto-tests.h b/tests/crypto/crypto-tests.h index c80aaba13..62c230e63 100644 --- a/tests/crypto/crypto-tests.h +++ b/tests/crypto/crypto-tests.h @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/crypto/crypto.cpp b/tests/crypto/crypto.cpp index f98183b39..921b07f29 100644 --- a/tests/crypto/crypto.cpp +++ b/tests/crypto/crypto.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/crypto/hash.c b/tests/crypto/hash.c index 950ac6c33..8d48e471b 100644 --- a/tests/crypto/hash.c +++ b/tests/crypto/hash.c @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/crypto/main.cpp b/tests/crypto/main.cpp index 9fcea9b23..41f282915 100644 --- a/tests/crypto/main.cpp +++ b/tests/crypto/main.cpp @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tests/crypto/random.c b/tests/crypto/random.c index ffb7b2fd0..e14d2e9f8 100644 --- a/tests/crypto/random.c +++ b/tests/crypto/random.c @@ -1,5 +1,5 @@ -// Copyright (c) 2011-2016 The Cryptonote developers -// Copyright (c) 2014-2016 SDN developers +// Copyright (c) 2012-2017 The Cryptonote developers +// Copyright (c) 2018-2023 Conceal Network & Conceal Devs // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php.