diff --git a/examples/address_validator.rs b/examples/address_validator.rs index 26c36dfe3..dd29a8344 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 ce875b4d5..06301d122 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 2ddabffd3..c81f34c66 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 81343bcf2..7665e4671 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 64e17825b..a2487cb56 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 8d6e96fdf..968c15175 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 24a555910..157b99e37 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 74eda5cf4..0edc23fc9 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 5ef1a3385..12dc76180 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 7ca78a2c3..ffae2b4f7 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 413ea1697..909a7d647 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 bb42a9c07..18170285b 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 b12268dd2..8c655db9d 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 fdb10b470..67a4122e5 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 5ddbdeb41..78a8b849e 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 1e9d1cfcd..6408069d1 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 2502f61b0..76c21a255 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 b2c64ba5a..db527fbfa 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 2c4b26cef..d739b8ee4 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 bbd9d41a5..3277c4ac7 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 f586ebeba..30785e864 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 691e7eb16..329b13a7b 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 e3e2b3310..944f69a51 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 a8061984f..168b6f3b7 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 5ed1151bd..59fd61b42 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 585c39749..9491683bf 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 2d0d9422d..55f747795 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 72141dcbb..d58f4e118 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 802ccd19c..15886b5ec 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 215078b60..3d2a01c94 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 91afa3910..7ab9c6c72 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 6c1f772c2..be692909f 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 c3f9ea15e..fb18520a2 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 c79683acf..38a8ad200 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 20ff58184..c7232b6d6 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 92d6aa5b1..8764a4d2d 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 b6119a443..6908d4606 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 a3d7c2b17..3132e5db9 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 8662844dd..1e2f4f473 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 82949ecc1..27c2bdbc8 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 bae86477f..f4267c274 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 eaac582ce..3bba7f1d8 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 702ba1855..5a74e5245 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 9c7532119..d40a6c059 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 58246392b..a388ff1db 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 d804fd21b..bef993450 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 01bf5628a..1bfcb5a39 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 0ba767025..fe5ce44bc 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 c02ff3a27..c7a58b2a2 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 8c072da02..f0a73aba2 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 084388b91..deefb6eaf 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