diff --git a/.github/workflows/handle_potential_conflicts.py b/.github/workflows/handle_potential_conflicts.py index cf744de059..bd4232752f 100644 --- a/.github/workflows/handle_potential_conflicts.py +++ b/.github/workflows/handle_potential_conflicts.py @@ -1,3 +1,6 @@ +# Copyright (c) 2022 The Dash Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. import sys import requests diff --git a/ci/dash/build-docker.sh b/ci/dash/build-docker.sh index 5aea849fc6..fd541928e8 100755 --- a/ci/dash/build-docker.sh +++ b/ci/dash/build-docker.sh @@ -1,4 +1,7 @@ #!/usr/bin/env bash +# Copyright (c) 2021-2022 The Dash Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. export LC_ALL=C diff --git a/ci/dash/build_depends.sh b/ci/dash/build_depends.sh index 40639bcd12..cefd55047c 100755 --- a/ci/dash/build_depends.sh +++ b/ci/dash/build_depends.sh @@ -1,4 +1,7 @@ #!/usr/bin/env bash +# Copyright (c) 2021 The Dash Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. # # This script is executed inside the builder image diff --git a/ci/dash/build_src.sh b/ci/dash/build_src.sh index 013fc4a10b..d2af35179f 100755 --- a/ci/dash/build_src.sh +++ b/ci/dash/build_src.sh @@ -1,4 +1,7 @@ #!/usr/bin/env bash +# Copyright (c) 2021-2022 The Dash Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. # # This script is executed inside the builder image diff --git a/ci/dash/matrix.sh b/ci/dash/matrix.sh index c498cd4b81..21028410a4 100755 --- a/ci/dash/matrix.sh +++ b/ci/dash/matrix.sh @@ -1,4 +1,7 @@ #!/usr/bin/env bash +# Copyright (c) 2019-2022 The Dash Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. # # This script is meant to be sourced into the actual build script. It contains the build matrix and will set all # necessary environment variables for the request build target diff --git a/ci/dash/push-docker.sh b/ci/dash/push-docker.sh index 3b3d0a5c47..93fa734506 100755 --- a/ci/dash/push-docker.sh +++ b/ci/dash/push-docker.sh @@ -1,4 +1,7 @@ #!/usr/bin/env bash +# Copyright (c) 2021 The Dash Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. export LC_ALL=C diff --git a/ci/dash/test_integrationtests.sh b/ci/dash/test_integrationtests.sh index 2fc86c4417..fb45f14bd9 100755 --- a/ci/dash/test_integrationtests.sh +++ b/ci/dash/test_integrationtests.sh @@ -1,4 +1,7 @@ #!/usr/bin/env bash +# Copyright (c) 2018-2022 The Dash Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. # # This script is executed inside the builder image diff --git a/ci/dash/test_unittests.sh b/ci/dash/test_unittests.sh index 0a8d180897..e7abe0a804 100755 --- a/ci/dash/test_unittests.sh +++ b/ci/dash/test_unittests.sh @@ -1,4 +1,7 @@ #!/usr/bin/env bash +# Copyright (c) 2021-2022 The Dash Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. # # This script is executed inside the builder image diff --git a/contrib/auto_gdb/common_helpers.py b/contrib/auto_gdb/common_helpers.py index d85ffb0b04..fafecd63b7 100644 --- a/contrib/auto_gdb/common_helpers.py +++ b/contrib/auto_gdb/common_helpers.py @@ -1,4 +1,7 @@ #!/usr/bin/env python3 +# Copyright (c) 2018-2020 The Dash Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. # import sys diff --git a/contrib/auto_gdb/dash_dbg.sh b/contrib/auto_gdb/dash_dbg.sh index dd9588c906..0486c18894 100755 --- a/contrib/auto_gdb/dash_dbg.sh +++ b/contrib/auto_gdb/dash_dbg.sh @@ -1,4 +1,7 @@ #!/usr/bin/env bash +# Copyright (c) 2018-2020 The Dash Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. # use testnet settings, if you need mainnet, use ~/.dashcore/dashd.pid file instead export LC_ALL=C diff --git a/contrib/auto_gdb/log_size.py b/contrib/auto_gdb/log_size.py index 4bb84e2eb2..149b6a2935 100644 --- a/contrib/auto_gdb/log_size.py +++ b/contrib/auto_gdb/log_size.py @@ -1,4 +1,7 @@ #!/usr/bin/env python3 +# Copyright (c) 2018-2021 The Dash Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. # try: diff --git a/contrib/auto_gdb/simple_class_obj.py b/contrib/auto_gdb/simple_class_obj.py index b3c9d852e6..d624a23df6 100644 --- a/contrib/auto_gdb/simple_class_obj.py +++ b/contrib/auto_gdb/simple_class_obj.py @@ -1,4 +1,7 @@ #!/usr/bin/env python3 +# Copyright (c) 2018-2021 The Dash Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. # import sys diff --git a/contrib/auto_gdb/stl_containers.py b/contrib/auto_gdb/stl_containers.py index a4fdb4afe9..9e50becbe6 100644 --- a/contrib/auto_gdb/stl_containers.py +++ b/contrib/auto_gdb/stl_containers.py @@ -1,4 +1,7 @@ #!/usr/bin/env python3 +# Copyright (c) 2018-2020 The Dash Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. # try: diff --git a/contrib/auto_gdb/used_size.py b/contrib/auto_gdb/used_size.py index 9ca88507bb..14cfac289a 100644 --- a/contrib/auto_gdb/used_size.py +++ b/contrib/auto_gdb/used_size.py @@ -1,4 +1,7 @@ #!/usr/bin/env python3 +# Copyright (c) 2018-2021 The Dash Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. # try: diff --git a/contrib/containers/deploy/docker-entrypoint.sh b/contrib/containers/deploy/docker-entrypoint.sh index 493d8d4e44..313c2d44f1 100755 --- a/contrib/containers/deploy/docker-entrypoint.sh +++ b/contrib/containers/deploy/docker-entrypoint.sh @@ -1,4 +1,7 @@ #!/usr/bin/env bash +# Copyright (c) 2021 The Dash Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. export LC_ALL=C set -e diff --git a/src/qt/governancelist.cpp b/src/qt/governancelist.cpp index 08d89e3e5c..0ced87e011 100644 --- a/src/qt/governancelist.cpp +++ b/src/qt/governancelist.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2021-2022 The Dash Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include #include diff --git a/src/qt/governancelist.h b/src/qt/governancelist.h index 568cac6685..65834e54e5 100644 --- a/src/qt/governancelist.h +++ b/src/qt/governancelist.h @@ -1,3 +1,7 @@ +// Copyright (c) 2021-2022 The Dash Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #ifndef BITCOIN_QT_GOVERNANCELIST_H #define BITCOIN_QT_GOVERNANCELIST_H diff --git a/src/qt/masternodelist.cpp b/src/qt/masternodelist.cpp index 79a32638e6..ef03bebca1 100644 --- a/src/qt/masternodelist.cpp +++ b/src/qt/masternodelist.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2016-2022 The Dash Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include #include diff --git a/src/qt/masternodelist.h b/src/qt/masternodelist.h index acfd100742..c623893537 100644 --- a/src/qt/masternodelist.h +++ b/src/qt/masternodelist.h @@ -1,3 +1,7 @@ +// Copyright (c) 2016-2021 The Dash Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #ifndef BITCOIN_QT_MASTERNODELIST_H #define BITCOIN_QT_MASTERNODELIST_H diff --git a/src/qt/test/trafficgraphdatatests.cpp b/src/qt/test/trafficgraphdatatests.cpp index ef25a739b4..a6ca93fa44 100644 --- a/src/qt/test/trafficgraphdatatests.cpp +++ b/src/qt/test/trafficgraphdatatests.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2017-2020 The Dash Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include #include #include diff --git a/src/qt/test/trafficgraphdatatests.h b/src/qt/test/trafficgraphdatatests.h index c7032f0198..0df2349983 100644 --- a/src/qt/test/trafficgraphdatatests.h +++ b/src/qt/test/trafficgraphdatatests.h @@ -1,3 +1,7 @@ +// Copyright (c) 2017-2018 The Dash Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #ifndef BITCOIN_QT_TEST_TRAFFICGRAPHDATATESTS_H #define BITCOIN_QT_TEST_TRAFFICGRAPHDATATESTS_H diff --git a/src/qt/trafficgraphdata.cpp b/src/qt/trafficgraphdata.cpp index 277a08ace6..5474b2fc9f 100644 --- a/src/qt/trafficgraphdata.cpp +++ b/src/qt/trafficgraphdata.cpp @@ -1,3 +1,7 @@ +// Copyright (c) 2017-2020 The Dash Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #include const int TrafficGraphData::RangeMinutes[] = {5,10,15,30,60,120,180,360,720,1440}; diff --git a/src/qt/trafficgraphdata.h b/src/qt/trafficgraphdata.h index 096baeae04..5a3a0764d9 100644 --- a/src/qt/trafficgraphdata.h +++ b/src/qt/trafficgraphdata.h @@ -1,3 +1,7 @@ +// Copyright (c) 2017-2020 The Dash Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #ifndef BITCOIN_QT_TRAFFICGRAPHDATA_H #define BITCOIN_QT_TRAFFICGRAPHDATA_H diff --git a/src/statsd_client.h b/src/statsd_client.h index b222918eb3..ed331ccd58 100644 --- a/src/statsd_client.h +++ b/src/statsd_client.h @@ -1,3 +1,7 @@ +// Copyright (c) 2020-2022 The Dash Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + #ifndef BITCOIN_STATSD_CLIENT_H #define BITCOIN_STATSD_CLIENT_H