7ceb1f6a4d
- boost::tuple → std::tuple (serialize.h, miner.cpp, script.cpp, walletdb.cpp) - boost::shared_ptr → std::shared_ptr (trianglesrpc.cpp) - boost::variant → std::variant for CTxDestination (script.h) - boost::get → std::get_if (main.cpp, rpcblockchain.cpp, coincontroldialog.cpp, wallet.cpp) - boost::apply_visitor → std::visit (base58.h, script.cpp, rpcwallet.cpp, test/base58_tests.cpp) - boost::static_visitor removed from all visitor classes - boost::lexical_cast → std::to_string/std::stoll (smessage.cpp, rpcsmessage.cpp) - Removed unused boost/lexical_cast.hpp includes (rest.cpp, trianglesrpc.cpp) - Removed boost/variant/get.hpp include (rpcdump.cpp) - Upgraded vendored LZ4 from 1.1.3 to 1.10.0 - Updated LZ4_compress() → LZ4_compress_default() (smessage.cpp) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
646 B
Plaintext
13 lines
646 B
Plaintext
This repository uses 2 different licenses :
|
|
- all files in the `lib` directory use a BSD 2-Clause license
|
|
- all other files use a GPL-2.0-or-later license, unless explicitly stated otherwise
|
|
|
|
Relevant license is reminded at the top of each source file,
|
|
and with presence of COPYING or LICENSE file in associated directories.
|
|
|
|
This model is selected to emphasize that
|
|
files in the `lib` directory are designed to be included into 3rd party applications,
|
|
while all other files, in `programs`, `tests` or `examples`,
|
|
are intended to be used "as is", as part of their intended scenarios,
|
|
with no intention to support 3rd party integration use cases.
|