From 91bb820dcfe383d5e111da5e0dd437c9f9060f87 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Tue, 25 Oct 2022 17:56:19 -0500 Subject: [PATCH] Update copyright notices to 2022 --- examples/address_validator.rs | 2 +- examples/compact_filters_balance.rs | 2 +- examples/compiler.rs | 2 +- examples/hardware_signer.rs | 10 ++++++++++ examples/policy.rs | 2 +- examples/psbt_signer.rs | 4 +++- examples/rpcwallet.rs | 4 +++- macros/src/lib.rs | 2 +- src/blockchain/any.rs | 2 +- src/blockchain/compact_filters/mod.rs | 2 +- src/blockchain/compact_filters/peer.rs | 2 +- src/blockchain/compact_filters/store.rs | 2 +- src/blockchain/compact_filters/sync.rs | 2 +- src/blockchain/electrum.rs | 2 +- src/blockchain/esplora/async.rs | 2 +- src/blockchain/esplora/blocking.rs | 2 +- src/blockchain/mod.rs | 2 +- src/blockchain/rpc.rs | 2 +- src/blockchain/script_sync.rs | 10 ++++++++++ src/database/any.rs | 2 +- src/database/keyvalue.rs | 2 +- src/database/memory.rs | 2 +- src/database/mod.rs | 2 +- src/database/sqlite.rs | 2 +- src/descriptor/checksum.rs | 2 +- src/descriptor/derived.rs | 2 +- src/descriptor/dsl.rs | 2 +- src/descriptor/error.rs | 2 +- src/descriptor/mod.rs | 2 +- src/descriptor/policy.rs | 2 +- src/descriptor/template.rs | 2 +- src/doctest.rs | 2 +- src/error.rs | 2 +- src/keys/bip39.rs | 2 +- src/keys/mod.rs | 2 +- src/lib.rs | 2 +- src/psbt/mod.rs | 2 +- src/testutils/blockchain_tests.rs | 9 +++++++++ src/testutils/configurable_blockchain_tests.rs | 10 ++++++++++ src/testutils/mod.rs | 2 +- src/types.rs | 2 +- src/wallet/address_validator.rs | 2 +- src/wallet/coin_selection.rs | 2 +- src/wallet/export.rs | 2 +- src/wallet/hardwaresigner.rs | 2 +- src/wallet/mod.rs | 2 +- src/wallet/signer.rs | 2 +- src/wallet/time.rs | 2 +- src/wallet/tx_builder.rs | 2 +- src/wallet/utils.rs | 2 +- src/wallet/verify.rs | 2 +- 51 files changed, 90 insertions(+), 47 deletions(-) diff --git a/examples/address_validator.rs b/examples/address_validator.rs index 26c36dfe33..e7c0fe5c4d 100644 --- a/examples/address_validator.rs +++ b/examples/address_validator.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/examples/compact_filters_balance.rs b/examples/compact_filters_balance.rs index ce875b4d59..53e6875279 100644 --- a/examples/compact_filters_balance.rs +++ b/examples/compact_filters_balance.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/examples/compiler.rs b/examples/compiler.rs index 2ddabffd30..817700b66d 100644 --- a/examples/compiler.rs +++ b/examples/compiler.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/examples/hardware_signer.rs b/examples/hardware_signer.rs index 81343bcf24..7665e46711 100644 --- a/examples/hardware_signer.rs +++ b/examples/hardware_signer.rs @@ -1,3 +1,13 @@ +// Bitcoin Dev Kit +// +// Copyright (c) 2022 Bitcoin Dev Kit Developers +// +// This file is licensed under the Apache License, Version 2.0 or the MIT license +// , at your option. +// You may not use this file except in accordance with one or both of these +// licenses. + use bdk::bitcoin::{Address, Network}; use bdk::blockchain::{Blockchain, ElectrumBlockchain}; use bdk::database::MemoryDatabase; diff --git a/examples/policy.rs b/examples/policy.rs index 64e17825b7..1943838e25 100644 --- a/examples/policy.rs +++ b/examples/policy.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/examples/psbt_signer.rs b/examples/psbt_signer.rs index 8d6e96fdf0..968c151758 100644 --- a/examples/psbt_signer.rs +++ b/examples/psbt_signer.rs @@ -1,4 +1,6 @@ -// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers +// Bitcoin Dev Kit +// +// Copyright (c) 2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/examples/rpcwallet.rs b/examples/rpcwallet.rs index 24a5559103..157b99e37a 100644 --- a/examples/rpcwallet.rs +++ b/examples/rpcwallet.rs @@ -1,4 +1,6 @@ -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Bitcoin Dev Kit +// +// Copyright (c) 2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/macros/src/lib.rs b/macros/src/lib.rs index 74eda5cf4e..8568bd1080 100644 --- a/macros/src/lib.rs +++ b/macros/src/lib.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/blockchain/any.rs b/src/blockchain/any.rs index 5ef1a33851..4f3a4e4981 100644 --- a/src/blockchain/any.rs +++ b/src/blockchain/any.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/blockchain/compact_filters/mod.rs b/src/blockchain/compact_filters/mod.rs index 7ca78a2c34..fac48fe77a 100644 --- a/src/blockchain/compact_filters/mod.rs +++ b/src/blockchain/compact_filters/mod.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/blockchain/compact_filters/peer.rs b/src/blockchain/compact_filters/peer.rs index 413ea16977..d97253706a 100644 --- a/src/blockchain/compact_filters/peer.rs +++ b/src/blockchain/compact_filters/peer.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/blockchain/compact_filters/store.rs b/src/blockchain/compact_filters/store.rs index bb42a9c073..767bbd7eed 100644 --- a/src/blockchain/compact_filters/store.rs +++ b/src/blockchain/compact_filters/store.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/blockchain/compact_filters/sync.rs b/src/blockchain/compact_filters/sync.rs index b12268dd24..d1ef988f57 100644 --- a/src/blockchain/compact_filters/sync.rs +++ b/src/blockchain/compact_filters/sync.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/blockchain/electrum.rs b/src/blockchain/electrum.rs index fdb10b470f..6e7b6c6f5b 100644 --- a/src/blockchain/electrum.rs +++ b/src/blockchain/electrum.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/blockchain/esplora/async.rs b/src/blockchain/esplora/async.rs index 5ddbdeb41f..4a9f242e0c 100644 --- a/src/blockchain/esplora/async.rs +++ b/src/blockchain/esplora/async.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/blockchain/esplora/blocking.rs b/src/blockchain/esplora/blocking.rs index 1e9d1cfcd7..274fcfbaff 100644 --- a/src/blockchain/esplora/blocking.rs +++ b/src/blockchain/esplora/blocking.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/blockchain/mod.rs b/src/blockchain/mod.rs index 2502f61b0c..f20c0cdfbd 100644 --- a/src/blockchain/mod.rs +++ b/src/blockchain/mod.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/blockchain/rpc.rs b/src/blockchain/rpc.rs index b2c64ba5ad..ae86163467 100644 --- a/src/blockchain/rpc.rs +++ b/src/blockchain/rpc.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2021 by Riccardo Casatta // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/blockchain/script_sync.rs b/src/blockchain/script_sync.rs index 2c4b26cef9..6c1ce30bd0 100644 --- a/src/blockchain/script_sync.rs +++ b/src/blockchain/script_sync.rs @@ -1,3 +1,13 @@ +// Bitcoin Dev Kit +// +// Copyright (c) 2021-2022 Bitcoin Dev Kit Developers +// +// This file is licensed under the Apache License, Version 2.0 or the MIT license +// , at your option. +// You may not use this file except in accordance with one or both of these +// licenses. + /*! This models a how a sync happens where you have a server that you send your script pubkeys to and it returns associated transactions i.e. electrum. diff --git a/src/database/any.rs b/src/database/any.rs index bbd9d41a50..9515e0f65d 100644 --- a/src/database/any.rs +++ b/src/database/any.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/database/keyvalue.rs b/src/database/keyvalue.rs index f586ebeba8..f019cb51b5 100644 --- a/src/database/keyvalue.rs +++ b/src/database/keyvalue.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/database/memory.rs b/src/database/memory.rs index 691e7eb16b..5fece13213 100644 --- a/src/database/memory.rs +++ b/src/database/memory.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/database/mod.rs b/src/database/mod.rs index e3e2b33102..fc9ae5ef69 100644 --- a/src/database/mod.rs +++ b/src/database/mod.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/database/sqlite.rs b/src/database/sqlite.rs index a8061984f2..30146f01ab 100644 --- a/src/database/sqlite.rs +++ b/src/database/sqlite.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/descriptor/checksum.rs b/src/descriptor/checksum.rs index 5ed1151bd8..04f168bf22 100644 --- a/src/descriptor/checksum.rs +++ b/src/descriptor/checksum.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/descriptor/derived.rs b/src/descriptor/derived.rs index 585c39749d..e2965cb183 100644 --- a/src/descriptor/derived.rs +++ b/src/descriptor/derived.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/descriptor/dsl.rs b/src/descriptor/dsl.rs index 2d0d9422d4..c7173a9158 100644 --- a/src/descriptor/dsl.rs +++ b/src/descriptor/dsl.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/descriptor/error.rs b/src/descriptor/error.rs index 72141dcbbb..f167053029 100644 --- a/src/descriptor/error.rs +++ b/src/descriptor/error.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/descriptor/mod.rs b/src/descriptor/mod.rs index 802ccd19ca..4838f9dfd7 100644 --- a/src/descriptor/mod.rs +++ b/src/descriptor/mod.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/descriptor/policy.rs b/src/descriptor/policy.rs index 215078b60c..f41654ca15 100644 --- a/src/descriptor/policy.rs +++ b/src/descriptor/policy.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/descriptor/template.rs b/src/descriptor/template.rs index 91afa39106..6b4f9ac519 100644 --- a/src/descriptor/template.rs +++ b/src/descriptor/template.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/doctest.rs b/src/doctest.rs index 6c1f772c24..b3b850b689 100644 --- a/src/doctest.rs +++ b/src/doctest.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/error.rs b/src/error.rs index c3f9ea15eb..ff65c2166a 100644 --- a/src/error.rs +++ b/src/error.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/keys/bip39.rs b/src/keys/bip39.rs index c79683acf0..8e1c0f136a 100644 --- a/src/keys/bip39.rs +++ b/src/keys/bip39.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/keys/mod.rs b/src/keys/mod.rs index 20ff581840..d32b7d7deb 100644 --- a/src/keys/mod.rs +++ b/src/keys/mod.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/lib.rs b/src/lib.rs index 92d6aa5b19..ef7d4137a5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/psbt/mod.rs b/src/psbt/mod.rs index b6119a443a..586bc099db 100644 --- a/src/psbt/mod.rs +++ b/src/psbt/mod.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/testutils/blockchain_tests.rs b/src/testutils/blockchain_tests.rs index a3d7c2b171..808bff5be6 100644 --- a/src/testutils/blockchain_tests.rs +++ b/src/testutils/blockchain_tests.rs @@ -1,3 +1,12 @@ +// Bitcoin Dev Kit +// +// Copyright (c) 2021-2022 Bitcoin Dev Kit Developers +// +// This file is licensed under the Apache License, Version 2.0 or the MIT license +// , at your option. +// You may not use this file except in accordance with one or both of these +// licenses. use crate::testutils::TestIncomingTx; use bitcoin::consensus::encode::{deserialize, serialize}; use bitcoin::hashes::hex::{FromHex, ToHex}; diff --git a/src/testutils/configurable_blockchain_tests.rs b/src/testutils/configurable_blockchain_tests.rs index 8662844dd6..1e2f4f4734 100644 --- a/src/testutils/configurable_blockchain_tests.rs +++ b/src/testutils/configurable_blockchain_tests.rs @@ -1,3 +1,13 @@ +// Bitcoin Dev Kit +// +// Copyright (c) 2022 Bitcoin Dev Kit Developers +// +// This file is licensed under the Apache License, Version 2.0 or the MIT license +// , at your option. +// You may not use this file except in accordance with one or both of these +// licenses. + use bitcoin::Network; use crate::{ diff --git a/src/testutils/mod.rs b/src/testutils/mod.rs index 82949ecc1e..43ad1fd790 100644 --- a/src/testutils/mod.rs +++ b/src/testutils/mod.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/types.rs b/src/types.rs index bae86477f0..665dbc29c7 100644 --- a/src/types.rs +++ b/src/types.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/wallet/address_validator.rs b/src/wallet/address_validator.rs index eaac582ce2..a9e5cf710c 100644 --- a/src/wallet/address_validator.rs +++ b/src/wallet/address_validator.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/wallet/coin_selection.rs b/src/wallet/coin_selection.rs index 702ba18558..85654b0a26 100644 --- a/src/wallet/coin_selection.rs +++ b/src/wallet/coin_selection.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/wallet/export.rs b/src/wallet/export.rs index 9c7532119b..4af8093ca1 100644 --- a/src/wallet/export.rs +++ b/src/wallet/export.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/wallet/hardwaresigner.rs b/src/wallet/hardwaresigner.rs index 58246392b2..6fd80ab2d8 100644 --- a/src/wallet/hardwaresigner.rs +++ b/src/wallet/hardwaresigner.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/wallet/mod.rs b/src/wallet/mod.rs index d804fd21bf..768d7144f2 100644 --- a/src/wallet/mod.rs +++ b/src/wallet/mod.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/wallet/signer.rs b/src/wallet/signer.rs index 01bf5628ae..49d4bd581e 100644 --- a/src/wallet/signer.rs +++ b/src/wallet/signer.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/wallet/time.rs b/src/wallet/time.rs index 0ba7670254..71090743f5 100644 --- a/src/wallet/time.rs +++ b/src/wallet/time.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/wallet/tx_builder.rs b/src/wallet/tx_builder.rs index c02ff3a27c..8684e8bdf3 100644 --- a/src/wallet/tx_builder.rs +++ b/src/wallet/tx_builder.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/wallet/utils.rs b/src/wallet/utils.rs index 8c072da025..7d35c91fa2 100644 --- a/src/wallet/utils.rs +++ b/src/wallet/utils.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2020 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/wallet/verify.rs b/src/wallet/verify.rs index 084388b91a..92b4f5c484 100644 --- a/src/wallet/verify.rs +++ b/src/wallet/verify.rs @@ -1,7 +1,7 @@ // Bitcoin Dev Kit // Written in 2021 by Alekos Filini // -// Copyright (c) 2020-2021 Bitcoin Dev Kit Developers +// Copyright (c) 2020-2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license