From c67d439cea99a1c8a6406fecbab841eead0428e6 Mon Sep 17 00:00:00 2001 From: Fernando Pelliccioni Date: Sun, 14 Feb 2021 19:46:01 -0300 Subject: [PATCH] copyright 2021 --- .appveyor.yml | 2 +- .travis.yml | 2 +- CMakeLists.txt | 2 +- conanfile.py | 2 +- include/kth/database.hpp | 2 +- include/kth/database/currency_config.hpp | 2 +- include/kth/database/data_base.hpp | 2 +- include/kth/database/databases/block_database.ipp | 2 +- include/kth/database/databases/generic_db.hpp | 2 +- include/kth/database/databases/header_database.ipp | 2 +- include/kth/database/databases/history_database.ipp | 2 +- include/kth/database/databases/history_entry.hpp | 2 +- include/kth/database/databases/internal_database.hpp | 2 +- include/kth/database/databases/internal_database.ipp | 2 +- include/kth/database/databases/lmdb_helper.hpp | 2 +- include/kth/database/databases/property_code.hpp | 2 +- include/kth/database/databases/reorg_database.ipp | 2 +- include/kth/database/databases/result_code.hpp | 2 +- include/kth/database/databases/spend_database.ipp | 2 +- include/kth/database/databases/tools.hpp | 2 +- include/kth/database/databases/transaction_database.ipp | 2 +- include/kth/database/databases/transaction_entry.hpp | 2 +- .../kth/database/databases/transaction_unconfirmed_database.ipp | 2 +- .../kth/database/databases/transaction_unconfirmed_entry.hpp | 2 +- include/kth/database/databases/utxo_database.ipp | 2 +- include/kth/database/databases/utxo_entry.hpp | 2 +- include/kth/database/define.hpp | 2 +- include/kth/database/legacy/databases/block_database.hpp | 2 +- include/kth/database/legacy/databases/history_database.hpp | 2 +- include/kth/database/legacy/databases/spend_database.hpp | 2 +- include/kth/database/legacy/databases/stealth_database.hpp | 2 +- include/kth/database/legacy/databases/transaction_database.hpp | 2 +- .../legacy/databases/transaction_unconfirmed_database.hpp | 2 +- include/kth/database/legacy/impl/hash_table_header.ipp | 2 +- include/kth/database/legacy/impl/record_hash_table.ipp | 2 +- include/kth/database/legacy/impl/record_multimap.ipp | 2 +- include/kth/database/legacy/impl/record_row.ipp | 2 +- include/kth/database/legacy/impl/remainder.ipp | 2 +- include/kth/database/legacy/impl/slab_hash_table.ipp | 2 +- include/kth/database/legacy/impl/slab_row.ipp | 2 +- include/kth/database/legacy/memory/accessor.hpp | 2 +- include/kth/database/legacy/memory/allocator.hpp | 2 +- include/kth/database/legacy/memory/memory.hpp | 2 +- include/kth/database/legacy/memory/memory_map.hpp | 2 +- include/kth/database/legacy/primitives/hash_table_header.hpp | 2 +- include/kth/database/legacy/primitives/record_hash_table.hpp | 2 +- include/kth/database/legacy/primitives/record_list.hpp | 2 +- include/kth/database/legacy/primitives/record_manager.hpp | 2 +- include/kth/database/legacy/primitives/record_multimap.hpp | 2 +- .../kth/database/legacy/primitives/record_multimap_iterable.hpp | 2 +- .../kth/database/legacy/primitives/record_multimap_iterator.hpp | 2 +- include/kth/database/legacy/primitives/slab_hash_table.hpp | 2 +- include/kth/database/legacy/primitives/slab_manager.hpp | 2 +- include/kth/database/legacy/result/block_result.hpp | 2 +- include/kth/database/legacy/result/transaction_result.hpp | 2 +- .../database/legacy/result/transaction_unconfirmed_result.hpp | 2 +- include/kth/database/settings.hpp | 2 +- include/kth/database/store.hpp | 2 +- include/kth/database/unspent_outputs.hpp | 2 +- include/kth/database/unspent_transaction.hpp | 2 +- include/kth/database/version.hpp | 2 +- src/data_base.cpp | 2 +- src/databases/history_entry.cpp | 2 +- src/databases/transaction_entry.cpp | 2 +- src/databases/transaction_unconfirmed_entry.cpp | 2 +- src/databases/utxo_entry.cpp | 2 +- src/legacy/databases/block_database.cpp | 2 +- src/legacy/databases/history_database.cpp | 2 +- src/legacy/databases/spend_database.cpp | 2 +- src/legacy/databases/stealth_database.cpp | 2 +- src/legacy/databases/transaction_database.cpp | 2 +- src/legacy/databases/transaction_unconfirmed_database.cpp | 2 +- src/legacy/memory/accessor.cpp | 2 +- src/legacy/memory/allocator.cpp | 2 +- src/legacy/memory/memory_map.cpp | 2 +- src/legacy/primitives/record_list.cpp | 2 +- src/legacy/primitives/record_manager.cpp | 2 +- src/legacy/primitives/record_multimap_iterable.cpp | 2 +- src/legacy/primitives/record_multimap_iterator.cpp | 2 +- src/legacy/primitives/slab_manager.cpp | 2 +- src/legacy/result/block_result.cpp | 2 +- src/legacy/result/transaction_result.cpp | 2 +- src/legacy/result/transaction_unconfirmed_result.cpp | 2 +- src/legacy/unspent_outputs.cpp | 2 +- src/legacy/unspent_transaction.cpp | 2 +- src/settings.cpp | 2 +- src/store.cpp | 2 +- src/version.cpp | 2 +- test/block_database.cpp | 2 +- test/data_base.cpp | 2 +- test/hash_table.cpp | 2 +- test/history_database.cpp | 2 +- test/internal_database.cpp | 2 +- test/main.cpp | 2 +- test/spend_database.cpp | 2 +- test/structure.cpp | 2 +- test/test_helpers.hpp | 2 +- test/transaction_database.cpp | 2 +- test/unspent_outputs.cpp | 2 +- test/unspent_transaction.cpp | 2 +- tools/initchain/initchain.cpp | 2 +- 101 files changed, 101 insertions(+), 101 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 0282ea41..953f78a0 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2016-2020 Knuth Project developers. +# Copyright (c) 2016-2021 Knuth Project developers. # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/.travis.yml b/.travis.yml index 66483e07..bfbea7a2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2016-2020 Knuth Project developers. +# Copyright (c) 2016-2021 Knuth Project developers. # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/CMakeLists.txt b/CMakeLists.txt index 60fd5509..30285490 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2016-2020 Knuth Project developers. +# Copyright (c) 2016-2021 Knuth Project developers. # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/conanfile.py b/conanfile.py index d6d9914f..b7134171 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,4 +1,4 @@ -# Copyright (c) 2016-2020 Knuth Project developers. +# Copyright (c) 2016-2021 Knuth Project developers. # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database.hpp b/include/kth/database.hpp index 317d0c63..2af1fc08 100644 --- a/include/kth/database.hpp +++ b/include/kth/database.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/currency_config.hpp b/include/kth/database/currency_config.hpp index c7ed540a..43ff3bf5 100644 --- a/include/kth/database/currency_config.hpp +++ b/include/kth/database/currency_config.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/data_base.hpp b/include/kth/database/data_base.hpp index 0d4285b1..d18c7e82 100644 --- a/include/kth/database/data_base.hpp +++ b/include/kth/database/data_base.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/databases/block_database.ipp b/include/kth/database/databases/block_database.ipp index 9c79b7e4..b7632fec 100644 --- a/include/kth/database/databases/block_database.ipp +++ b/include/kth/database/databases/block_database.ipp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/databases/generic_db.hpp b/include/kth/database/databases/generic_db.hpp index 3a1e42e9..6e4cce0b 100644 --- a/include/kth/database/databases/generic_db.hpp +++ b/include/kth/database/databases/generic_db.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/databases/header_database.ipp b/include/kth/database/databases/header_database.ipp index 9a9a8a16..10bdc736 100644 --- a/include/kth/database/databases/header_database.ipp +++ b/include/kth/database/databases/header_database.ipp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/databases/history_database.ipp b/include/kth/database/databases/history_database.ipp index d40f3203..90cd9dfc 100644 --- a/include/kth/database/databases/history_database.ipp +++ b/include/kth/database/databases/history_database.ipp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/databases/history_entry.hpp b/include/kth/database/databases/history_entry.hpp index 981504df..2b46fa67 100644 --- a/include/kth/database/databases/history_entry.hpp +++ b/include/kth/database/databases/history_entry.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/databases/internal_database.hpp b/include/kth/database/databases/internal_database.hpp index 44f1381d..db403dfc 100644 --- a/include/kth/database/databases/internal_database.hpp +++ b/include/kth/database/databases/internal_database.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/databases/internal_database.ipp b/include/kth/database/databases/internal_database.ipp index ca423eda..953962fd 100644 --- a/include/kth/database/databases/internal_database.ipp +++ b/include/kth/database/databases/internal_database.ipp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/databases/lmdb_helper.hpp b/include/kth/database/databases/lmdb_helper.hpp index d91109db..81611879 100644 --- a/include/kth/database/databases/lmdb_helper.hpp +++ b/include/kth/database/databases/lmdb_helper.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/databases/property_code.hpp b/include/kth/database/databases/property_code.hpp index e206ec6e..001a0e15 100644 --- a/include/kth/database/databases/property_code.hpp +++ b/include/kth/database/databases/property_code.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/databases/reorg_database.ipp b/include/kth/database/databases/reorg_database.ipp index 2b4ff9c9..af9a6d92 100644 --- a/include/kth/database/databases/reorg_database.ipp +++ b/include/kth/database/databases/reorg_database.ipp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/databases/result_code.hpp b/include/kth/database/databases/result_code.hpp index 994c8040..b9ad3ec2 100644 --- a/include/kth/database/databases/result_code.hpp +++ b/include/kth/database/databases/result_code.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/databases/spend_database.ipp b/include/kth/database/databases/spend_database.ipp index 1f81c4df..d6f72e48 100644 --- a/include/kth/database/databases/spend_database.ipp +++ b/include/kth/database/databases/spend_database.ipp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/databases/tools.hpp b/include/kth/database/databases/tools.hpp index a488c854..56fae2a0 100644 --- a/include/kth/database/databases/tools.hpp +++ b/include/kth/database/databases/tools.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/databases/transaction_database.ipp b/include/kth/database/databases/transaction_database.ipp index 3705ee5b..29dda06c 100644 --- a/include/kth/database/databases/transaction_database.ipp +++ b/include/kth/database/databases/transaction_database.ipp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/databases/transaction_entry.hpp b/include/kth/database/databases/transaction_entry.hpp index dc34562a..4466e353 100644 --- a/include/kth/database/databases/transaction_entry.hpp +++ b/include/kth/database/databases/transaction_entry.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/databases/transaction_unconfirmed_database.ipp b/include/kth/database/databases/transaction_unconfirmed_database.ipp index 53801a1d..d1acfd7b 100644 --- a/include/kth/database/databases/transaction_unconfirmed_database.ipp +++ b/include/kth/database/databases/transaction_unconfirmed_database.ipp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/databases/transaction_unconfirmed_entry.hpp b/include/kth/database/databases/transaction_unconfirmed_entry.hpp index c7cc96be..852b8786 100644 --- a/include/kth/database/databases/transaction_unconfirmed_entry.hpp +++ b/include/kth/database/databases/transaction_unconfirmed_entry.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/databases/utxo_database.ipp b/include/kth/database/databases/utxo_database.ipp index 0baea278..0323cd16 100644 --- a/include/kth/database/databases/utxo_database.ipp +++ b/include/kth/database/databases/utxo_database.ipp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/databases/utxo_entry.hpp b/include/kth/database/databases/utxo_entry.hpp index 50bdd7f6..65edcac3 100644 --- a/include/kth/database/databases/utxo_entry.hpp +++ b/include/kth/database/databases/utxo_entry.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/define.hpp b/include/kth/database/define.hpp index cd065eed..aca2a01c 100644 --- a/include/kth/database/define.hpp +++ b/include/kth/database/define.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/databases/block_database.hpp b/include/kth/database/legacy/databases/block_database.hpp index a96f8ee7..9c977d5a 100644 --- a/include/kth/database/legacy/databases/block_database.hpp +++ b/include/kth/database/legacy/databases/block_database.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/databases/history_database.hpp b/include/kth/database/legacy/databases/history_database.hpp index 2c1491c3..70773ab9 100644 --- a/include/kth/database/legacy/databases/history_database.hpp +++ b/include/kth/database/legacy/databases/history_database.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/databases/spend_database.hpp b/include/kth/database/legacy/databases/spend_database.hpp index 8c47a532..03a81e39 100644 --- a/include/kth/database/legacy/databases/spend_database.hpp +++ b/include/kth/database/legacy/databases/spend_database.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/databases/stealth_database.hpp b/include/kth/database/legacy/databases/stealth_database.hpp index add62eaa..c7715152 100644 --- a/include/kth/database/legacy/databases/stealth_database.hpp +++ b/include/kth/database/legacy/databases/stealth_database.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/databases/transaction_database.hpp b/include/kth/database/legacy/databases/transaction_database.hpp index 06b56e25..0d7866c9 100644 --- a/include/kth/database/legacy/databases/transaction_database.hpp +++ b/include/kth/database/legacy/databases/transaction_database.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/databases/transaction_unconfirmed_database.hpp b/include/kth/database/legacy/databases/transaction_unconfirmed_database.hpp index 0deb5c8a..7690fbd8 100644 --- a/include/kth/database/legacy/databases/transaction_unconfirmed_database.hpp +++ b/include/kth/database/legacy/databases/transaction_unconfirmed_database.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/impl/hash_table_header.ipp b/include/kth/database/legacy/impl/hash_table_header.ipp index 78926cda..a3b0545e 100644 --- a/include/kth/database/legacy/impl/hash_table_header.ipp +++ b/include/kth/database/legacy/impl/hash_table_header.ipp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/impl/record_hash_table.ipp b/include/kth/database/legacy/impl/record_hash_table.ipp index 5663cccb..e6d6ec89 100644 --- a/include/kth/database/legacy/impl/record_hash_table.ipp +++ b/include/kth/database/legacy/impl/record_hash_table.ipp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/impl/record_multimap.ipp b/include/kth/database/legacy/impl/record_multimap.ipp index 65807a2b..54f54403 100644 --- a/include/kth/database/legacy/impl/record_multimap.ipp +++ b/include/kth/database/legacy/impl/record_multimap.ipp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/impl/record_row.ipp b/include/kth/database/legacy/impl/record_row.ipp index c0b307b8..814b9e6b 100644 --- a/include/kth/database/legacy/impl/record_row.ipp +++ b/include/kth/database/legacy/impl/record_row.ipp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/impl/remainder.ipp b/include/kth/database/legacy/impl/remainder.ipp index ccff96ba..30e8af97 100644 --- a/include/kth/database/legacy/impl/remainder.ipp +++ b/include/kth/database/legacy/impl/remainder.ipp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/impl/slab_hash_table.ipp b/include/kth/database/legacy/impl/slab_hash_table.ipp index b5072fba..3526a898 100644 --- a/include/kth/database/legacy/impl/slab_hash_table.ipp +++ b/include/kth/database/legacy/impl/slab_hash_table.ipp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/impl/slab_row.ipp b/include/kth/database/legacy/impl/slab_row.ipp index f47935ff..100e2aa7 100644 --- a/include/kth/database/legacy/impl/slab_row.ipp +++ b/include/kth/database/legacy/impl/slab_row.ipp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/memory/accessor.hpp b/include/kth/database/legacy/memory/accessor.hpp index d838ee70..b112478e 100644 --- a/include/kth/database/legacy/memory/accessor.hpp +++ b/include/kth/database/legacy/memory/accessor.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/memory/allocator.hpp b/include/kth/database/legacy/memory/allocator.hpp index 94672ee2..059dcbfb 100644 --- a/include/kth/database/legacy/memory/allocator.hpp +++ b/include/kth/database/legacy/memory/allocator.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/memory/memory.hpp b/include/kth/database/legacy/memory/memory.hpp index c8c743db..2128d021 100644 --- a/include/kth/database/legacy/memory/memory.hpp +++ b/include/kth/database/legacy/memory/memory.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/memory/memory_map.hpp b/include/kth/database/legacy/memory/memory_map.hpp index c9f303be..2aa67b30 100644 --- a/include/kth/database/legacy/memory/memory_map.hpp +++ b/include/kth/database/legacy/memory/memory_map.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/primitives/hash_table_header.hpp b/include/kth/database/legacy/primitives/hash_table_header.hpp index 95d1b49a..2fd4b875 100644 --- a/include/kth/database/legacy/primitives/hash_table_header.hpp +++ b/include/kth/database/legacy/primitives/hash_table_header.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/primitives/record_hash_table.hpp b/include/kth/database/legacy/primitives/record_hash_table.hpp index 23260295..6d3f17af 100644 --- a/include/kth/database/legacy/primitives/record_hash_table.hpp +++ b/include/kth/database/legacy/primitives/record_hash_table.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/primitives/record_list.hpp b/include/kth/database/legacy/primitives/record_list.hpp index 586b37dd..c65979c5 100644 --- a/include/kth/database/legacy/primitives/record_list.hpp +++ b/include/kth/database/legacy/primitives/record_list.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/primitives/record_manager.hpp b/include/kth/database/legacy/primitives/record_manager.hpp index 39096b58..547a0ef5 100644 --- a/include/kth/database/legacy/primitives/record_manager.hpp +++ b/include/kth/database/legacy/primitives/record_manager.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/primitives/record_multimap.hpp b/include/kth/database/legacy/primitives/record_multimap.hpp index 37d1760f..de4b3637 100644 --- a/include/kth/database/legacy/primitives/record_multimap.hpp +++ b/include/kth/database/legacy/primitives/record_multimap.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/primitives/record_multimap_iterable.hpp b/include/kth/database/legacy/primitives/record_multimap_iterable.hpp index daa4cccb..50e71ff6 100644 --- a/include/kth/database/legacy/primitives/record_multimap_iterable.hpp +++ b/include/kth/database/legacy/primitives/record_multimap_iterable.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/primitives/record_multimap_iterator.hpp b/include/kth/database/legacy/primitives/record_multimap_iterator.hpp index a80642a4..52245bfa 100644 --- a/include/kth/database/legacy/primitives/record_multimap_iterator.hpp +++ b/include/kth/database/legacy/primitives/record_multimap_iterator.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/primitives/slab_hash_table.hpp b/include/kth/database/legacy/primitives/slab_hash_table.hpp index 9d687f97..e996c86f 100644 --- a/include/kth/database/legacy/primitives/slab_hash_table.hpp +++ b/include/kth/database/legacy/primitives/slab_hash_table.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/primitives/slab_manager.hpp b/include/kth/database/legacy/primitives/slab_manager.hpp index 9f8e44c1..5fc84d1e 100644 --- a/include/kth/database/legacy/primitives/slab_manager.hpp +++ b/include/kth/database/legacy/primitives/slab_manager.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/result/block_result.hpp b/include/kth/database/legacy/result/block_result.hpp index e6e0ad61..efee0fe7 100644 --- a/include/kth/database/legacy/result/block_result.hpp +++ b/include/kth/database/legacy/result/block_result.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/result/transaction_result.hpp b/include/kth/database/legacy/result/transaction_result.hpp index 9c071cc6..282ca115 100644 --- a/include/kth/database/legacy/result/transaction_result.hpp +++ b/include/kth/database/legacy/result/transaction_result.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/legacy/result/transaction_unconfirmed_result.hpp b/include/kth/database/legacy/result/transaction_unconfirmed_result.hpp index e872b2c8..9c648bed 100644 --- a/include/kth/database/legacy/result/transaction_unconfirmed_result.hpp +++ b/include/kth/database/legacy/result/transaction_unconfirmed_result.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/settings.hpp b/include/kth/database/settings.hpp index 9c6bd602..9ca941d3 100644 --- a/include/kth/database/settings.hpp +++ b/include/kth/database/settings.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/store.hpp b/include/kth/database/store.hpp index e418c390..1879e9de 100644 --- a/include/kth/database/store.hpp +++ b/include/kth/database/store.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/unspent_outputs.hpp b/include/kth/database/unspent_outputs.hpp index 98715ac9..43ec810e 100644 --- a/include/kth/database/unspent_outputs.hpp +++ b/include/kth/database/unspent_outputs.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/unspent_transaction.hpp b/include/kth/database/unspent_transaction.hpp index e1b5e67e..5b41b738 100644 --- a/include/kth/database/unspent_transaction.hpp +++ b/include/kth/database/unspent_transaction.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/include/kth/database/version.hpp b/include/kth/database/version.hpp index 5020cbc0..16427d51 100644 --- a/include/kth/database/version.hpp +++ b/include/kth/database/version.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/data_base.cpp b/src/data_base.cpp index 2d1f4359..bf2a1458 100644 --- a/src/data_base.cpp +++ b/src/data_base.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/databases/history_entry.cpp b/src/databases/history_entry.cpp index 34e8f7c1..4f135a77 100644 --- a/src/databases/history_entry.cpp +++ b/src/databases/history_entry.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/databases/transaction_entry.cpp b/src/databases/transaction_entry.cpp index 1acdc184..83a1cfaf 100644 --- a/src/databases/transaction_entry.cpp +++ b/src/databases/transaction_entry.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/databases/transaction_unconfirmed_entry.cpp b/src/databases/transaction_unconfirmed_entry.cpp index 9f1389b9..647d587f 100644 --- a/src/databases/transaction_unconfirmed_entry.cpp +++ b/src/databases/transaction_unconfirmed_entry.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/databases/utxo_entry.cpp b/src/databases/utxo_entry.cpp index 8be3cc93..3b7d542d 100644 --- a/src/databases/utxo_entry.cpp +++ b/src/databases/utxo_entry.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/legacy/databases/block_database.cpp b/src/legacy/databases/block_database.cpp index 9daa2797..d7033e42 100644 --- a/src/legacy/databases/block_database.cpp +++ b/src/legacy/databases/block_database.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/legacy/databases/history_database.cpp b/src/legacy/databases/history_database.cpp index b3934b5f..45d344b4 100644 --- a/src/legacy/databases/history_database.cpp +++ b/src/legacy/databases/history_database.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/legacy/databases/spend_database.cpp b/src/legacy/databases/spend_database.cpp index aa1b3556..b6bf707f 100644 --- a/src/legacy/databases/spend_database.cpp +++ b/src/legacy/databases/spend_database.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/legacy/databases/stealth_database.cpp b/src/legacy/databases/stealth_database.cpp index aec55cff..ce13f759 100644 --- a/src/legacy/databases/stealth_database.cpp +++ b/src/legacy/databases/stealth_database.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/legacy/databases/transaction_database.cpp b/src/legacy/databases/transaction_database.cpp index 483f4a6f..6e06b85e 100644 --- a/src/legacy/databases/transaction_database.cpp +++ b/src/legacy/databases/transaction_database.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/legacy/databases/transaction_unconfirmed_database.cpp b/src/legacy/databases/transaction_unconfirmed_database.cpp index e4d58a2e..d815e559 100644 --- a/src/legacy/databases/transaction_unconfirmed_database.cpp +++ b/src/legacy/databases/transaction_unconfirmed_database.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/legacy/memory/accessor.cpp b/src/legacy/memory/accessor.cpp index 7b7b777b..84d60c80 100644 --- a/src/legacy/memory/accessor.cpp +++ b/src/legacy/memory/accessor.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/legacy/memory/allocator.cpp b/src/legacy/memory/allocator.cpp index b253678e..eac3011a 100644 --- a/src/legacy/memory/allocator.cpp +++ b/src/legacy/memory/allocator.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/legacy/memory/memory_map.cpp b/src/legacy/memory/memory_map.cpp index e71199e7..6d23c9e8 100644 --- a/src/legacy/memory/memory_map.cpp +++ b/src/legacy/memory/memory_map.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/legacy/primitives/record_list.cpp b/src/legacy/primitives/record_list.cpp index de29cae7..85da79ea 100644 --- a/src/legacy/primitives/record_list.cpp +++ b/src/legacy/primitives/record_list.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/legacy/primitives/record_manager.cpp b/src/legacy/primitives/record_manager.cpp index 08b82b1c..dce0eb86 100644 --- a/src/legacy/primitives/record_manager.cpp +++ b/src/legacy/primitives/record_manager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/legacy/primitives/record_multimap_iterable.cpp b/src/legacy/primitives/record_multimap_iterable.cpp index f03d2aa4..413458f4 100644 --- a/src/legacy/primitives/record_multimap_iterable.cpp +++ b/src/legacy/primitives/record_multimap_iterable.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/legacy/primitives/record_multimap_iterator.cpp b/src/legacy/primitives/record_multimap_iterator.cpp index f92022fc..bc36a541 100644 --- a/src/legacy/primitives/record_multimap_iterator.cpp +++ b/src/legacy/primitives/record_multimap_iterator.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/legacy/primitives/slab_manager.cpp b/src/legacy/primitives/slab_manager.cpp index 74fcb014..74578648 100644 --- a/src/legacy/primitives/slab_manager.cpp +++ b/src/legacy/primitives/slab_manager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/legacy/result/block_result.cpp b/src/legacy/result/block_result.cpp index 5da4a2d2..7eefd094 100644 --- a/src/legacy/result/block_result.cpp +++ b/src/legacy/result/block_result.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/legacy/result/transaction_result.cpp b/src/legacy/result/transaction_result.cpp index c7d981ad..2666cb3c 100644 --- a/src/legacy/result/transaction_result.cpp +++ b/src/legacy/result/transaction_result.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/legacy/result/transaction_unconfirmed_result.cpp b/src/legacy/result/transaction_unconfirmed_result.cpp index 6ab579f1..578091d3 100644 --- a/src/legacy/result/transaction_unconfirmed_result.cpp +++ b/src/legacy/result/transaction_unconfirmed_result.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/legacy/unspent_outputs.cpp b/src/legacy/unspent_outputs.cpp index d4c882b3..bdc41b8d 100644 --- a/src/legacy/unspent_outputs.cpp +++ b/src/legacy/unspent_outputs.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/legacy/unspent_transaction.cpp b/src/legacy/unspent_transaction.cpp index 8e5069d2..8ab9147d 100644 --- a/src/legacy/unspent_transaction.cpp +++ b/src/legacy/unspent_transaction.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/settings.cpp b/src/settings.cpp index 343f1705..0fbba822 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/store.cpp b/src/store.cpp index 54e909dc..35fd8ec0 100644 --- a/src/store.cpp +++ b/src/store.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/src/version.cpp b/src/version.cpp index 52913cc1..bea5ea5a 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/test/block_database.cpp b/test/block_database.cpp index e1a97ffb..8b47b29c 100644 --- a/test/block_database.cpp +++ b/test/block_database.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/test/data_base.cpp b/test/data_base.cpp index daf7252d..3c026fcc 100644 --- a/test/data_base.cpp +++ b/test/data_base.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/test/hash_table.cpp b/test/hash_table.cpp index 1908d386..90c8d32f 100644 --- a/test/hash_table.cpp +++ b/test/hash_table.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/test/history_database.cpp b/test/history_database.cpp index 085cd4a0..debda4b5 100644 --- a/test/history_database.cpp +++ b/test/history_database.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/test/internal_database.cpp b/test/internal_database.cpp index 52a179e6..9eb897a5 100644 --- a/test/internal_database.cpp +++ b/test/internal_database.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/test/main.cpp b/test/main.cpp index 6d3f85ad..84cb15c3 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/test/spend_database.cpp b/test/spend_database.cpp index 2b8816ba..e925d36f 100644 --- a/test/spend_database.cpp +++ b/test/spend_database.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/test/structure.cpp b/test/structure.cpp index 0e400e59..c9bd03d1 100644 --- a/test/structure.cpp +++ b/test/structure.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/test/test_helpers.hpp b/test/test_helpers.hpp index 4993d8cb..c34724b4 100644 --- a/test/test_helpers.hpp +++ b/test/test_helpers.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/test/transaction_database.cpp b/test/transaction_database.cpp index e378c4ea..35482481 100644 --- a/test/transaction_database.cpp +++ b/test/transaction_database.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/test/unspent_outputs.cpp b/test/unspent_outputs.cpp index b7b03e07..83ceeb8d 100644 --- a/test/unspent_outputs.cpp +++ b/test/unspent_outputs.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/test/unspent_transaction.cpp b/test/unspent_transaction.cpp index 04969c70..dba0d0f0 100644 --- a/test/unspent_transaction.cpp +++ b/test/unspent_transaction.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/tools/initchain/initchain.cpp b/tools/initchain/initchain.cpp index 7f0608b2..10b5722c 100644 --- a/tools/initchain/initchain.cpp +++ b/tools/initchain/initchain.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2020 Knuth Project developers. +// Copyright (c) 2016-2021 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php.