From db1c1d7a99bd2c52449228b2409abab3f45ff9e4 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, remove ranges --- 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..dd29a8344d 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) 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..06301d1221 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) 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..c81f34c66b 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) 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..a2487cb568 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) 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..0edc23fc96 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) 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..12dc761808 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) 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..ffae2b4f77 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) 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..909a7d647c 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) 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..18170285b8 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) 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..8c655db9de 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) 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..67a4122e59 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) 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..78a8b849ef 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) 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..6408069d15 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) 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..76c21a255d 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) 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..db527fbfad 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) 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..d739b8ee4b 100644 --- a/src/blockchain/script_sync.rs +++ b/src/blockchain/script_sync.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. + /*! 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..3277c4ac76 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) 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..30785e864b 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) 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..329b13a7b5 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) 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..944f69a51a 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) 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..168b6f3b77 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) 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..59fd61b42c 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) 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..9491683bf5 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) 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..55f747795e 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) 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..d58f4e1188 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) 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..15886b5ecf 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) 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..3d2a01c946 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) 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..7ab9c6c721 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) 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..be692909f1 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) 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..fb18520a22 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) 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..38a8ad2001 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) 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..c7232b6d6c 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) 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..8764a4d2d6 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) 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..6908d46060 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) 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..3132e5db90 100644 --- a/src/testutils/blockchain_tests.rs +++ b/src/testutils/blockchain_tests.rs @@ -1,3 +1,12 @@ +// 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 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..27c2bdbc80 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) 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..f4267c274f 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) 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..3bba7f1d89 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) 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..5a74e52453 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) 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..d40a6c0591 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) 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..a388ff1db1 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) 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..bef9934504 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) 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..1bfcb5a396 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) 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..fe5ce44bc1 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) 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..c7a58b2a2f 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) 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..f0a73aba22 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) 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..deefb6eafe 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) 2022 Bitcoin Dev Kit Developers // // This file is licensed under the Apache License, Version 2.0 or the MIT license