From 15d879ff68ed2e052179b1acf068a4d6a4ccdf3b Mon Sep 17 00:00:00 2001 From: Fernando Pelliccioni Date: Sat, 7 Sep 2024 16:06:31 +0200 Subject: [PATCH] chore: update copyright notice in source files --- .github/workflows/npm-publish.yml | 2 +- examples/addressGenerator.js | 2 +- examples/blockchainSync.js | 2 +- examples/encoding.js | 2 +- examples/insertBlocks.js | 2 +- examples/subscribe.js | 2 +- examples/subscribe_multiple.js | 2 +- examples/subscription/index.js | 2 +- examples/subscription/index_just_one_sub.js | 2 +- src/chain/block.d.ts | 2 +- src/chain/block.js | 2 +- src/chain/blockList.js | 2 +- src/chain/chain.d.ts | 2 +- src/chain/chain.js | 2 +- src/chain/genericList.js | 2 +- src/chain/header.d.ts | 2 +- src/chain/header.js | 2 +- src/chain/input.d.ts | 2 +- src/chain/input.js | 2 +- src/chain/inputList.js | 2 +- src/chain/output.d.ts | 2 +- src/chain/output.js | 2 +- src/chain/outputList.js | 2 +- src/chain/outputPoint.d.ts | 2 +- src/chain/outputPoint.js | 2 +- src/chain/script.d.ts | 2 +- src/chain/script.js | 2 +- src/chain/transaction.d.ts | 2 +- src/chain/transaction.js | 2 +- src/chain/transactionList.js | 2 +- src/common.js | 2 +- src/config/blockchainSettings.js | 2 +- src/config/databaseSettings.js | 2 +- src/config/network.d.ts | 2 +- src/config/network.js | 2 +- src/config/networkSettings.js | 2 +- src/config/nodeSettings.js | 2 +- src/config/settings.d.ts | 2 +- src/config/settings.js | 2 +- src/encoding.d.ts | 2 +- src/encoding.js | 2 +- src/errors.js | 2 +- src/kth.d.ts | 2 +- src/kth.js | 2 +- src/node.d.ts | 2 +- src/node.js | 2 +- src/numerics.d.ts | 2 +- src/numerics.js | 2 +- src/primitives.d.ts | 2 +- src/primitives.js | 2 +- src/result.d.ts | 2 +- src/result.js | 2 +- src/utils/lazySequence.d.ts | 2 +- src/utils/lazySequence.js | 2 +- src/wallet/paymentAddress.d.ts | 2 +- src/wallet/paymentAddress.js | 2 +- src/wallet/wallet.d.ts | 2 +- src/wallet/wallet.js | 2 +- test/node.test.js | 2 +- test/wallet/paymentAddress.test.js | 2 +- test/wallet/wallet.test.js | 2 +- 61 files changed, 61 insertions(+), 61 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 757fc17..8443c87 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2016-2023 Knuth Project developers. +# Copyright (c) 2016-2024 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/examples/addressGenerator.js b/examples/addressGenerator.js index 9ff4c54..eeef5a9 100644 --- a/examples/addressGenerator.js +++ b/examples/addressGenerator.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/examples/blockchainSync.js b/examples/blockchainSync.js index 480ef5b..7c07083 100644 --- a/examples/blockchainSync.js +++ b/examples/blockchainSync.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/examples/encoding.js b/examples/encoding.js index e31f2f5..a4fb271 100644 --- a/examples/encoding.js +++ b/examples/encoding.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/examples/insertBlocks.js b/examples/insertBlocks.js index dff0984..2c7938a 100644 --- a/examples/insertBlocks.js +++ b/examples/insertBlocks.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/examples/subscribe.js b/examples/subscribe.js index d3357cc..2c479bd 100644 --- a/examples/subscribe.js +++ b/examples/subscribe.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/examples/subscribe_multiple.js b/examples/subscribe_multiple.js index 493ab52..fac92e1 100644 --- a/examples/subscribe_multiple.js +++ b/examples/subscribe_multiple.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/examples/subscription/index.js b/examples/subscription/index.js index d82f3e4..abb8b75 100644 --- a/examples/subscription/index.js +++ b/examples/subscription/index.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/examples/subscription/index_just_one_sub.js b/examples/subscription/index_just_one_sub.js index 80d3ad2..a5e94a5 100644 --- a/examples/subscription/index_just_one_sub.js +++ b/examples/subscription/index_just_one_sub.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/block.d.ts b/src/chain/block.d.ts index 631ec21..7f37a1f 100644 --- a/src/chain/block.d.ts +++ b/src/chain/block.d.ts @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/block.js b/src/chain/block.js index e881de8..4c8dedb 100644 --- a/src/chain/block.js +++ b/src/chain/block.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/blockList.js b/src/chain/blockList.js index e5d723c..fd1b1d0 100644 --- a/src/chain/blockList.js +++ b/src/chain/blockList.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/chain.d.ts b/src/chain/chain.d.ts index fb79b10..792772d 100644 --- a/src/chain/chain.d.ts +++ b/src/chain/chain.d.ts @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/chain.js b/src/chain/chain.js index 5a267ba..52dabcc 100644 --- a/src/chain/chain.js +++ b/src/chain/chain.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/genericList.js b/src/chain/genericList.js index c47b83b..7b0afc8 100644 --- a/src/chain/genericList.js +++ b/src/chain/genericList.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/header.d.ts b/src/chain/header.d.ts index e167119..16dfb2f 100644 --- a/src/chain/header.d.ts +++ b/src/chain/header.d.ts @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/header.js b/src/chain/header.js index 3b3f6e6..805c4be 100644 --- a/src/chain/header.js +++ b/src/chain/header.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/input.d.ts b/src/chain/input.d.ts index 0aa17a7..e26d22d 100644 --- a/src/chain/input.d.ts +++ b/src/chain/input.d.ts @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/input.js b/src/chain/input.js index a583226..2a06f08 100644 --- a/src/chain/input.js +++ b/src/chain/input.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/inputList.js b/src/chain/inputList.js index dc882f6..0b5383a 100644 --- a/src/chain/inputList.js +++ b/src/chain/inputList.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/output.d.ts b/src/chain/output.d.ts index 91025af..98c192e 100644 --- a/src/chain/output.d.ts +++ b/src/chain/output.d.ts @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/output.js b/src/chain/output.js index ca5d60f..2974f72 100644 --- a/src/chain/output.js +++ b/src/chain/output.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/outputList.js b/src/chain/outputList.js index 5335480..a7bf99a 100644 --- a/src/chain/outputList.js +++ b/src/chain/outputList.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/outputPoint.d.ts b/src/chain/outputPoint.d.ts index f13781e..cb3af1c 100644 --- a/src/chain/outputPoint.d.ts +++ b/src/chain/outputPoint.d.ts @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/outputPoint.js b/src/chain/outputPoint.js index 6ea329f..d5a16b5 100644 --- a/src/chain/outputPoint.js +++ b/src/chain/outputPoint.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/script.d.ts b/src/chain/script.d.ts index f16d9f7..d81f0a1 100644 --- a/src/chain/script.d.ts +++ b/src/chain/script.d.ts @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/script.js b/src/chain/script.js index 0edb484..289cfac 100644 --- a/src/chain/script.js +++ b/src/chain/script.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/transaction.d.ts b/src/chain/transaction.d.ts index d7a2941..c9e041c 100644 --- a/src/chain/transaction.d.ts +++ b/src/chain/transaction.d.ts @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/transaction.js b/src/chain/transaction.js index bea375f..c3cafd9 100644 --- a/src/chain/transaction.js +++ b/src/chain/transaction.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/chain/transactionList.js b/src/chain/transactionList.js index 5c632b4..da3fe30 100644 --- a/src/chain/transactionList.js +++ b/src/chain/transactionList.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/common.js b/src/common.js index 138bca0..7b3a19e 100644 --- a/src/common.js +++ b/src/common.js @@ -1,6 +1,6 @@ /* eslint-disable */ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/config/blockchainSettings.js b/src/config/blockchainSettings.js index 33b53a5..9644571 100644 --- a/src/config/blockchainSettings.js +++ b/src/config/blockchainSettings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/config/databaseSettings.js b/src/config/databaseSettings.js index 9eafb37..cdf14be 100644 --- a/src/config/databaseSettings.js +++ b/src/config/databaseSettings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/config/network.d.ts b/src/config/network.d.ts index 8ac273d..630a69a 100644 --- a/src/config/network.d.ts +++ b/src/config/network.d.ts @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/config/network.js b/src/config/network.js index f322034..92d0697 100644 --- a/src/config/network.js +++ b/src/config/network.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/config/networkSettings.js b/src/config/networkSettings.js index 6185fa9..5fd2f80 100644 --- a/src/config/networkSettings.js +++ b/src/config/networkSettings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/config/nodeSettings.js b/src/config/nodeSettings.js index cbbe0b2..f672fea 100644 --- a/src/config/nodeSettings.js +++ b/src/config/nodeSettings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/config/settings.d.ts b/src/config/settings.d.ts index 469db74..2f117b2 100644 --- a/src/config/settings.d.ts +++ b/src/config/settings.d.ts @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/config/settings.js b/src/config/settings.js index 53486e1..e3fa7f5 100644 --- a/src/config/settings.js +++ b/src/config/settings.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/encoding.d.ts b/src/encoding.d.ts index acc9b20..ac3b686 100644 --- a/src/encoding.d.ts +++ b/src/encoding.d.ts @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/encoding.js b/src/encoding.js index 5e2772b..e71296e 100644 --- a/src/encoding.js +++ b/src/encoding.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/errors.js b/src/errors.js index 7f0ba10..db68302 100644 --- a/src/errors.js +++ b/src/errors.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/kth.d.ts b/src/kth.d.ts index c07330b..1ce9011 100644 --- a/src/kth.d.ts +++ b/src/kth.d.ts @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/kth.js b/src/kth.js index c20215b..3dd022d 100644 --- a/src/kth.js +++ b/src/kth.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/node.d.ts b/src/node.d.ts index 2033636..e15b932 100644 --- a/src/node.d.ts +++ b/src/node.d.ts @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/node.js b/src/node.js index c5e353a..72e3391 100644 --- a/src/node.js +++ b/src/node.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/numerics.d.ts b/src/numerics.d.ts index fbe8d9b..0582815 100644 --- a/src/numerics.d.ts +++ b/src/numerics.d.ts @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/numerics.js b/src/numerics.js index 3884a3f..1b48695 100644 --- a/src/numerics.js +++ b/src/numerics.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/primitives.d.ts b/src/primitives.d.ts index a12692a..a4a0afc 100644 --- a/src/primitives.d.ts +++ b/src/primitives.d.ts @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/primitives.js b/src/primitives.js index 2d32e39..17ce2f9 100644 --- a/src/primitives.js +++ b/src/primitives.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/result.d.ts b/src/result.d.ts index e3ed384..ca0f002 100644 --- a/src/result.d.ts +++ b/src/result.d.ts @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/result.js b/src/result.js index 1d07ebb..143becf 100644 --- a/src/result.js +++ b/src/result.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/utils/lazySequence.d.ts b/src/utils/lazySequence.d.ts index e7f5906..b292b14 100644 --- a/src/utils/lazySequence.d.ts +++ b/src/utils/lazySequence.d.ts @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/utils/lazySequence.js b/src/utils/lazySequence.js index 55bb6ec..0077e47 100644 --- a/src/utils/lazySequence.js +++ b/src/utils/lazySequence.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/wallet/paymentAddress.d.ts b/src/wallet/paymentAddress.d.ts index 9a4e7eb..0aae4f8 100644 --- a/src/wallet/paymentAddress.d.ts +++ b/src/wallet/paymentAddress.d.ts @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/wallet/paymentAddress.js b/src/wallet/paymentAddress.js index 7f586dd..5ed9a6b 100644 --- a/src/wallet/paymentAddress.js +++ b/src/wallet/paymentAddress.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/wallet/wallet.d.ts b/src/wallet/wallet.d.ts index d8cf4fb..1ea6ab0 100644 --- a/src/wallet/wallet.d.ts +++ b/src/wallet/wallet.d.ts @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/wallet/wallet.js b/src/wallet/wallet.js index 2a19451..fe58cd8 100644 --- a/src/wallet/wallet.js +++ b/src/wallet/wallet.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/node.test.js b/test/node.test.js index 973d85d..8f49e65 100644 --- a/test/node.test.js +++ b/test/node.test.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/wallet/paymentAddress.test.js b/test/wallet/paymentAddress.test.js index e79bae7..df17c76 100644 --- a/test/wallet/paymentAddress.test.js +++ b/test/wallet/paymentAddress.test.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 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/wallet/wallet.test.js b/test/wallet/wallet.test.js index 3bede0e..7df41c6 100644 --- a/test/wallet/wallet.test.js +++ b/test/wallet/wallet.test.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016-2023 Knuth Project developers. +// Copyright (c) 2016-2024 Knuth Project developers. // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php.