mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
Merge 939111c33d
into c5e44a0435
This commit is contained in:
commit
94ed2b4938
15 changed files with 40 additions and 17 deletions
|
@ -19,7 +19,7 @@ License
|
||||||
-------
|
-------
|
||||||
|
|
||||||
Bitcoin Core is released under the terms of the MIT license. See [COPYING](COPYING) for more
|
Bitcoin Core is released under the terms of the MIT license. See [COPYING](COPYING) for more
|
||||||
information or see https://opensource.org/licenses/MIT.
|
information or see https://opensource.org/license/MIT.
|
||||||
|
|
||||||
Development Process
|
Development Process
|
||||||
-------------------
|
-------------------
|
||||||
|
|
|
@ -121,17 +121,6 @@ Comment:
|
||||||
You should have received a copy of the GNU General Public License along
|
You should have received a copy of the GNU General Public License along
|
||||||
with this program. If not, see <http://www.gnu.org/licenses/>.
|
with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
License: GPL-3+
|
|
||||||
Permission is granted to copy, distribute and/or modify this document
|
|
||||||
under the terms of the GNU General Public License, Version 3 or any
|
|
||||||
later version published by the Free Software Foundation.
|
|
||||||
Comment:
|
|
||||||
On Debian systems the GNU General Public License (GPL) version 3 is
|
|
||||||
located in '/usr/share/common-licenses/GPL-3'.
|
|
||||||
.
|
|
||||||
You should have received a copy of the GNU General Public License along
|
|
||||||
with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
|
|
||||||
License: public-domain
|
License: public-domain
|
||||||
This work is in the public domain.
|
This work is in the public domain.
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,6 @@ EXCLUDE = [
|
||||||
'src/test/fuzz/FuzzedDataProvider.h',
|
'src/test/fuzz/FuzzedDataProvider.h',
|
||||||
'src/tinyformat.h',
|
'src/tinyformat.h',
|
||||||
'src/bench/nanobench.h',
|
'src/bench/nanobench.h',
|
||||||
'test/functional/test_framework/bignum.py',
|
|
||||||
# python init:
|
# python init:
|
||||||
'*__init__.py',
|
'*__init__.py',
|
||||||
]
|
]
|
||||||
|
@ -94,7 +93,6 @@ EXPECTED_HOLDER_NAMES = [
|
||||||
r"Satoshi Nakamoto",
|
r"Satoshi Nakamoto",
|
||||||
r"The Bitcoin Core developers",
|
r"The Bitcoin Core developers",
|
||||||
r"BitPay Inc\.",
|
r"BitPay Inc\.",
|
||||||
r"University of Illinois at Urbana-Champaign\.",
|
|
||||||
r"Pieter Wuille",
|
r"Pieter Wuille",
|
||||||
r"Wladimir J\. van der Laan",
|
r"Wladimir J\. van der Laan",
|
||||||
r"Jeff Garzik",
|
r"Jeff Garzik",
|
||||||
|
|
|
@ -96,6 +96,6 @@ std::string LicenseInfo()
|
||||||
"\n" +
|
"\n" +
|
||||||
"\n" +
|
"\n" +
|
||||||
_("This is experimental software.") + "\n" +
|
_("This is experimental software.") + "\n" +
|
||||||
strprintf(_("Distributed under the MIT software license, see the accompanying file %s or %s"), "COPYING", "<https://opensource.org/licenses/MIT>").translated +
|
strprintf(_("Distributed under the MIT software license, see the accompanying file %s or %s"), "COPYING", "<https://opensource.org/license/MIT>").translated +
|
||||||
"\n";
|
"\n";
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
// Copyright (c) 2023 The Bitcoin Core developers
|
||||||
|
// Distributed under the MIT software license, see the accompanying
|
||||||
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#include <node/peerman_args.h>
|
#include <node/peerman_args.h>
|
||||||
|
|
||||||
#include <common/args.h>
|
#include <common/args.h>
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
// Copyright (c) 2023 The Bitcoin Core developers
|
||||||
|
// Distributed under the MIT software license, see the accompanying
|
||||||
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef BITCOIN_NODE_PEERMAN_ARGS_H
|
#ifndef BITCOIN_NODE_PEERMAN_ARGS_H
|
||||||
#define BITCOIN_NODE_PEERMAN_ARGS_H
|
#define BITCOIN_NODE_PEERMAN_ARGS_H
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (c) 2024
|
// Copyright (c) 2024 The Bitcoin Core developers
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// Copyright (c) 2024
|
// Copyright (c) 2024 The Bitcoin Core developers
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
#ifndef BITCOIN_NODE_TXDOWNLOADMAN_IMPL_H
|
#ifndef BITCOIN_NODE_TXDOWNLOADMAN_IMPL_H
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
// Copyright (c) 2022 The Bitcoin Core developers
|
||||||
|
// Distributed under the MIT software license, see the accompanying
|
||||||
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#include <arith_uint256.h>
|
#include <arith_uint256.h>
|
||||||
#include <chain.h>
|
#include <chain.h>
|
||||||
#include <chainparams.h>
|
#include <chainparams.h>
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
// Copyright (c) 2023 The Bitcoin Core developers
|
||||||
|
// Distributed under the MIT software license, see the accompanying
|
||||||
|
// file COPYING or https://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#include <blockencodings.h>
|
#include <blockencodings.h>
|
||||||
#include <consensus/merkle.h>
|
#include <consensus/merkle.h>
|
||||||
#include <consensus/validation.h>
|
#include <consensus/validation.h>
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
// Copyright 2014 BitPay Inc.
|
||||||
|
// Copyright 2015 Bitcoin Core Developers
|
||||||
|
// Distributed under the MIT software license, see the accompanying
|
||||||
|
// file COPYING or https://opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef BITCOIN_UNIVALUE_INCLUDE_UNIVALUE_ESCAPES_H
|
#ifndef BITCOIN_UNIVALUE_INCLUDE_UNIVALUE_ESCAPES_H
|
||||||
#define BITCOIN_UNIVALUE_INCLUDE_UNIVALUE_ESCAPES_H
|
#define BITCOIN_UNIVALUE_INCLUDE_UNIVALUE_ESCAPES_H
|
||||||
static const char *escapes[256] = {
|
static const char *escapes[256] = {
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
// Copyright 2014 BitPay Inc.
|
||||||
|
// Copyright 2015 Bitcoin Core Developers
|
||||||
|
// Distributed under the MIT software license, see the accompanying
|
||||||
|
// file COPYING or https://opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
// Test program that can be called by the JSON test suite at
|
// Test program that can be called by the JSON test suite at
|
||||||
// https://github.com/nst/JSONTestSuite.
|
// https://github.com/nst/JSONTestSuite.
|
||||||
//
|
//
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
// Copyright (c) 2023 The Bitcoin Core developers
|
||||||
|
// Distributed under the MIT software license, see the accompanying
|
||||||
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#ifndef BITCOIN_UTIL_TRANSACTION_IDENTIFIER_H
|
#ifndef BITCOIN_UTIL_TRANSACTION_IDENTIFIER_H
|
||||||
#define BITCOIN_UTIL_TRANSACTION_IDENTIFIER_H
|
#define BITCOIN_UTIL_TRANSACTION_IDENTIFIER_H
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// Copyright (c) 2024 The Bitcoin Core developers
|
||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
# Copyright (c) 2024 The Bitcoin Core developers
|
||||||
|
# Distributed under the MIT software license, see the accompanying
|
||||||
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
SHARED_EXCLUDED_SUBTREES = ["src/leveldb/",
|
SHARED_EXCLUDED_SUBTREES = ["src/leveldb/",
|
||||||
"src/crc32c/",
|
"src/crc32c/",
|
||||||
"src/secp256k1/",
|
"src/secp256k1/",
|
||||||
|
|
Loading…
Add table
Reference in a new issue