From 46539a0c1efabfcffd027ea7002237f27c2b7be2 Mon Sep 17 00:00:00 2001 From: Phillip Mienk Date: Tue, 9 May 2023 17:04:06 -0700 Subject: [PATCH 1/3] Regenerate artifacts. --- .github/workflows/ci.yml | 46 +++++++-- builds/cmake/CMakeLists.txt | 65 ++++++++++-- configure.ac | 194 ++++++++++++++++++------------------ 3 files changed, 192 insertions(+), 113 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e8cf385b..121816a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,6 +28,7 @@ jobs: icu: "" cc: "clang" flags: "-Os -fPIE" + options: "--enable-isystem" packager: "apt" packages: "" @@ -42,6 +43,7 @@ jobs: icu: "--build-icu --with-icu" cc: "clang" flags: "-Os -fPIE" + options: "--enable-isystem" packager: "apt" packages: "" @@ -56,6 +58,7 @@ jobs: icu: "" cc: "gcc" flags: "-Os -fPIE" + options: "--enable-isystem" packager: "apt" packages: "" @@ -70,6 +73,7 @@ jobs: icu: "--build-icu --with-icu" cc: "gcc" flags: "-Og -g --coverage -fPIE" + options: "--enable-isystem" packager: "apt" packages: "lcov" @@ -84,6 +88,7 @@ jobs: icu: "--build-icu --with-icu" cc: "clang" flags: "-Os -fPIE" + options: "--enable-isystem" packager: "brew" packages: "" @@ -98,6 +103,7 @@ jobs: icu: "--build-icu --with-icu" cc: "clang" flags: "-Os -fvisibility=hidden -fPIE" + options: "--enable-isystem" packager: "brew" packages: "" @@ -149,11 +155,16 @@ jobs: echo "LDFLAGS=-Wl,-rpath,$WORKSPACE_SUBPATH/prefix/lib" >> $GITHUB_ENV fi + - name: Display CPU details + if: ${{ (runner.os == 'Linux') }} + shell: bash + run: | + lscpu + - name: Execute install.sh run: > ./install.sh - --enable-isystem - --build-dir=$LIBBITCOIN_SRC_PATH + --build-dir=$LIBBITCOIN_SRC_PATH ${{ matrix.options }} --prefix=$LIBBITCOIN_SRC_PATH/prefix ${{ env.LINKAGE }} ${{ env.ASSERT_NDEBUG }} @@ -207,11 +218,11 @@ jobs: run: | cat ${{ github.workspace }}/build/build-*/bootstrap.log + - name: Failure display otool output if: ${{ failure() && (matrix.os == 'macos-latest') }} run: | otool -L ${{ github.workspace }}/test/.libs/libbitcoin-node-test - - name: Failure display DYLD_PRINT_LIBRARIES if: ${{ failure() && (matrix.os == 'macos-latest') }} run: | @@ -241,6 +252,7 @@ jobs: icu: "" cc: "clang" flags: "-Os -fPIE" + options: "" packager: "apt" packages: "" @@ -255,6 +267,7 @@ jobs: icu: "--build-icu --with-icu" cc: "clang" flags: "-Os -fPIE" + options: "" packager: "apt" packages: "" @@ -269,6 +282,7 @@ jobs: icu: "" cc: "gcc" flags: "-Os -fPIE" + options: "" packager: "apt" packages: "" @@ -283,6 +297,7 @@ jobs: icu: "--build-icu --with-icu" cc: "gcc" flags: "-Og -fPIE" + options: "" packager: "apt" packages: "" @@ -297,6 +312,7 @@ jobs: icu: "--build-icu --with-icu" cc: "clang" flags: "-Os -fPIE" + options: "" packager: "brew" packages: "" @@ -311,6 +327,7 @@ jobs: icu: "--build-icu --with-icu" cc: "clang" flags: "-Os -fvisibility=hidden -fPIE" + options: "" packager: "brew" packages: "" @@ -365,10 +382,16 @@ jobs: echo "LDFLAGS=-Wl,-rpath,$WORKSPACE_SUBPATH/prefix/lib" >> $GITHUB_ENV fi + - name: Display CPU details + if: ${{ (runner.os == 'Linux') }} + shell: bash + run: | + lscpu + - name: Execute install-cmake.sh run: > ./install-cmake.sh - --build-dir=$LIBBITCOIN_SRC_PATH + --build-dir=$LIBBITCOIN_SRC_PATH ${{ matrix.options }} --prefix=$LIBBITCOIN_SRC_PATH/prefix ${{ env.LINKAGE }} ${{ env.ASSERT_NDEBUG }} @@ -422,11 +445,11 @@ jobs: run: | cat ${{ github.workspace }}/build/build-*/bootstrap.log + - name: Failure display otool output if: ${{ failure() && (matrix.os == 'macos-latest') }} run: | otool -L ${{ github.workspace }}/test/.libs/libbitcoin-node-test - - name: Failure display DYLD_PRINT_LIBRARIES if: ${{ failure() && (matrix.os == 'macos-latest') }} run: | @@ -467,6 +490,7 @@ jobs: icu: "" cc: "clang" flags: "-Os -fPIE" + options: "" packager: "apt" packages: "" @@ -482,6 +506,7 @@ jobs: icu: "--build-icu --with-icu" cc: "clang" flags: "-Os -fPIE" + options: "" packager: "apt" packages: "" @@ -497,6 +522,7 @@ jobs: icu: "" cc: "gcc" flags: "-Os -fPIE" + options: "" packager: "apt" packages: "" @@ -551,10 +577,16 @@ jobs: echo "LDFLAGS=-Wl,-rpath,$WORKSPACE_SUBPATH/prefix/${{ matrix.preset }}/lib" >> $GITHUB_ENV fi + - name: Display CPU details + if: ${{ (runner.os == 'Linux') }} + shell: bash + run: | + lscpu + - name: Execute install-cmakepresets.sh run: > ./install-cmakepresets.sh - --build-dir=$LIBBITCOIN_SRC_PATH + --build-dir=$LIBBITCOIN_SRC_PATH ${{ matrix.options }} --prefix=$LIBBITCOIN_SRC_PATH/prefix/${{ matrix.preset }} --preset=${{ matrix.preset }} ${{ env.LINKAGE }} @@ -609,11 +641,11 @@ jobs: run: | cat ${{ github.workspace }}/build/build-*/bootstrap.log + - name: Failure display otool output if: ${{ failure() && (matrix.os == 'macos-latest') }} run: | otool -L ${{ github.workspace }}/test/.libs/libbitcoin-node-test - - name: Failure display DYLD_PRINT_LIBRARIES if: ${{ failure() && (matrix.os == 'macos-latest') }} run: | diff --git a/builds/cmake/CMakeLists.txt b/builds/cmake/CMakeLists.txt index fa71cb84..face8f26 100644 --- a/builds/cmake/CMakeLists.txt +++ b/builds/cmake/CMakeLists.txt @@ -16,6 +16,8 @@ enable_testing() list( APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/modules" ) include(CheckIncludeFiles) include(CheckSymbolExists) +include(CheckCXXCompilerFlag) +include(CheckCXXSourceCompiles) set_property(GLOBAL PROPERTY USE_FOLDERS ON) @@ -40,32 +42,77 @@ set( CMAKE_CXX_STANDARD_REQUIRED ON ) # Add compiler options #------------------------------------------------------------------------------ # Warn on all stuff. -add_compile_options( "-Wall" ) +check_cxx_compiler_flag( "-Wall" HAS_FLAG_WALL ) +if ( HAS_FLAG_WALL ) + add_compile_options( "-Wall" ) +else() + message( FATAL_ERROR "Compiler does not support -Wall" ) +endif() # Warn on extra stuff. -add_compile_options( "-Wextra" ) +check_cxx_compiler_flag( "-Wextra" HAS_FLAG_WEXTRA ) +if ( HAS_FLAG_WEXTRA ) + add_compile_options( "-Wextra" ) +else() + message( FATAL_ERROR "Compiler does not support -Wextra" ) +endif() # Be really annoying. -add_compile_options( "-Wpedantic" ) +check_cxx_compiler_flag( "-Wpedantic" HAS_FLAG_WPEDANTIC ) +if ( HAS_FLAG_WPEDANTIC ) + add_compile_options( "-Wpedantic" ) +else() + message( FATAL_ERROR "Compiler does not support -Wpedantic" ) +endif() # Disallow warning on style order of declarations. -add_compile_options( "-Wno-reorder" ) +check_cxx_compiler_flag( "-Wno-reorder" HAS_FLAG_WNO-REORDER ) +if ( HAS_FLAG_WNO-REORDER ) + add_compile_options( "-Wno-reorder" ) +else() + message( FATAL_ERROR "Compiler does not support -Wno-reorder" ) +endif() # Suppress warning for incomplete field initialization. -add_compile_options( "-Wno-missing-field-initializers" ) +check_cxx_compiler_flag( "-Wno-missing-field-initializers" HAS_FLAG_WNO-MISSING-FIELD-INITIALIZERS ) +if ( HAS_FLAG_WNO-MISSING-FIELD-INITIALIZERS ) + add_compile_options( "-Wno-missing-field-initializers" ) +else() + message( FATAL_ERROR "Compiler does not support -Wno-missing-field-initializers" ) +endif() # Conform to style. -add_compile_options( "-Wno-missing-braces" ) +check_cxx_compiler_flag( "-Wno-missing-braces" HAS_FLAG_WNO-MISSING-BRACES ) +if ( HAS_FLAG_WNO-MISSING-BRACES ) + add_compile_options( "-Wno-missing-braces" ) +else() + message( FATAL_ERROR "Compiler does not support -Wno-missing-braces" ) +endif() # Ignore comments within comments or commenting of backslash extended lines. -add_compile_options( "-Wno-comment" ) +check_cxx_compiler_flag( "-Wno-comment" HAS_FLAG_WNO-COMMENT ) +if ( HAS_FLAG_WNO-COMMENT ) + add_compile_options( "-Wno-comment" ) +else() + message( FATAL_ERROR "Compiler does not support -Wno-comment" ) +endif() # Suppress warning for copy of implicitly generated copy constructor. -add_compile_options( "-Wno-deprecated-copy" ) +check_cxx_compiler_flag( "-Wno-deprecated-copy" HAS_FLAG_WNO-DEPRECATED-COPY ) +if ( HAS_FLAG_WNO-DEPRECATED-COPY ) + add_compile_options( "-Wno-deprecated-copy" ) +else() + message( FATAL_ERROR "Compiler does not support -Wno-deprecated-copy" ) +endif() # Conflict in stdlib under clang. if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") - add_compile_options( "-Wno-mismatched-tags" ) + check_cxx_compiler_flag( "-Wno-mismatched-tags" HAS_FLAG_WNO-MISMATCHED-TAGS ) + if ( HAS_FLAG_WNO-MISMATCHED-TAGS ) + add_compile_options( "-Wno-mismatched-tags" ) + else() + message( FATAL_ERROR "Compiler does not support -Wno-mismatched-tags" ) + endif() endif() # Implement -Dbash-completiondir and output ${bash-completiondir} and declare bash-completiondir. diff --git a/configure.ac b/configure.ac index 538216e7..7c0d0bad 100644 --- a/configure.ac +++ b/configure.ac @@ -147,6 +147,103 @@ AC_ARG_ENABLE([isystem], AC_MSG_RESULT([$enable_isystem]) +# Set flags. +#============================================================================== +# Require c++11 for all c++ products. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-std=c++11], + [CXXFLAGS="$CXXFLAGS -std=c++11"])]) + +# Warn on all stuff. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wall], + [CFLAGS="$CFLAGS -Wall"])]) + +# Warn on all stuff. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wall], + [CXXFLAGS="$CXXFLAGS -Wall"])]) + +# Warn on extra stuff. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wextra], + [CFLAGS="$CFLAGS -Wextra"])]) + +# Warn on extra stuff. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wextra], + [CXXFLAGS="$CXXFLAGS -Wextra"])]) + +# Be really annoying. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wpedantic], + [CFLAGS="$CFLAGS -Wpedantic"], + [AX_CHECK_COMPILE_FLAG([-pedantic], + [CFLAGS="$CFLAGS -pedantic"])])]) + +# Be really annoying. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wpedantic], + [CXXFLAGS="$CXXFLAGS -Wpedantic"], + [AX_CHECK_COMPILE_FLAG([-pedantic], + [CXXFLAGS="$CXXFLAGS -pedantic"])])]) + +# Disallow warning on style order of declarations. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wno-reorder], + [CXXFLAGS="$CXXFLAGS -Wno-reorder"])]) + +# Suppress warning for incomplete field initialization. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wno-missing-field-initializers], + [CXXFLAGS="$CXXFLAGS -Wno-missing-field-initializers"])]) + +# Conform to style. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wno-missing-braces], + [CXXFLAGS="$CXXFLAGS -Wno-missing-braces"])]) + +# Ignore comments within comments or commenting of backslash extended lines. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wno-comment], + [CXXFLAGS="$CXXFLAGS -Wno-comment"])]) + +# Suppress warning for copy of implicitly generated copy constructor. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_COMPILE_FLAG([-Wno-deprecated-copy], + [CXXFLAGS="$CXXFLAGS -Wno-deprecated-copy"])]) + +# Conflict in stdlib under clang. Enabled in clang only. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*clang*], + [AX_CHECK_COMPILE_FLAG([-Wno-mismatched-tags], + [CXXFLAGS="$CXXFLAGS -Wno-mismatched-tags"])]) + +# Protect stack. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_LINK_FLAG([-fstack-protector], + [LDFLAGS="$LDFLAGS -fstack-protector"])]) + +# Protect stack comprehensively. +#------------------------------------------------------------------------------ +AS_CASE([${CC}], [*], + [AX_CHECK_LINK_FLAG([-fstack-protector-all], + [LDFLAGS="$LDFLAGS -fstack-protector-all"])]) + + # Check dependencies. #============================================================================== # Require Boost of at least version 1.72.0 and output ${boost_CPPFLAGS/LDFLAGS}. @@ -248,103 +345,6 @@ AS_CASE([${enable_isystem}],[yes], AC_MSG_NOTICE([bitcoin_network_BUILD_CPPFLAGS : ${bitcoin_network_BUILD_CPPFLAGS}]) -# Set flags. -#============================================================================== -# Require c++11 for all c++ products. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-std=c++11], - [CXXFLAGS="$CXXFLAGS -std=c++11"])]) - -# Warn on all stuff. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wall], - [CFLAGS="$CFLAGS -Wall"])]) - -# Warn on all stuff. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wall], - [CXXFLAGS="$CXXFLAGS -Wall"])]) - -# Warn on extra stuff. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wextra], - [CFLAGS="$CFLAGS -Wextra"])]) - -# Warn on extra stuff. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wextra], - [CXXFLAGS="$CXXFLAGS -Wextra"])]) - -# Be really annoying. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wpedantic], - [CFLAGS="$CFLAGS -Wpedantic"], - [AX_CHECK_COMPILE_FLAG([-pedantic], - [CFLAGS="$CFLAGS -pedantic"])])]) - -# Be really annoying. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wpedantic], - [CXXFLAGS="$CXXFLAGS -Wpedantic"], - [AX_CHECK_COMPILE_FLAG([-pedantic], - [CXXFLAGS="$CXXFLAGS -pedantic"])])]) - -# Disallow warning on style order of declarations. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wno-reorder], - [CXXFLAGS="$CXXFLAGS -Wno-reorder"])]) - -# Suppress warning for incomplete field initialization. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wno-missing-field-initializers], - [CXXFLAGS="$CXXFLAGS -Wno-missing-field-initializers"])]) - -# Conform to style. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wno-missing-braces], - [CXXFLAGS="$CXXFLAGS -Wno-missing-braces"])]) - -# Ignore comments within comments or commenting of backslash extended lines. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wno-comment], - [CXXFLAGS="$CXXFLAGS -Wno-comment"])]) - -# Suppress warning for copy of implicitly generated copy constructor. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_COMPILE_FLAG([-Wno-deprecated-copy], - [CXXFLAGS="$CXXFLAGS -Wno-deprecated-copy"])]) - -# Conflict in stdlib under clang. Enabled in clang only. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*clang*], - [AX_CHECK_COMPILE_FLAG([-Wno-mismatched-tags], - [CXXFLAGS="$CXXFLAGS -Wno-mismatched-tags"])]) - -# Protect stack. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_LINK_FLAG([-fstack-protector], - [LDFLAGS="$LDFLAGS -fstack-protector"])]) - -# Protect stack comprehensively. -#------------------------------------------------------------------------------ -AS_CASE([${CC}], [*], - [AX_CHECK_LINK_FLAG([-fstack-protector-all], - [LDFLAGS="$LDFLAGS -fstack-protector-all"])]) - - # Process outputs into templates. #============================================================================== AC_CONFIG_FILES([Makefile libbitcoin-node.pc]) From 5624bf4bef938ebeb20d9ec376dac965c9fd21df Mon Sep 17 00:00:00 2001 From: Phillip Mienk Date: Wed, 16 Aug 2023 17:27:34 -0700 Subject: [PATCH 2/3] Update copyright year range. --- .github/workflows/ci.yml | 2 +- Makefile.am | 2 +- autogen.sh | 2 +- build.cmd | 2 +- builds/cmake/CMakeLists.txt | 2 +- builds/cmake/modules/FindBash-Completion.cmake | 2 +- builds/cmake/modules/FindBitcoin-Blockchain.cmake | 2 +- builds/cmake/modules/FindBitcoin-Network.cmake | 2 +- builds/msvc/debug.natvis | 2 +- builds/msvc/vs2022/bn/bn.vcxproj | 2 +- builds/msvc/vs2022/bn/bn.vcxproj.filters | 2 +- builds/msvc/vs2022/bn/packages.config | 2 +- .../vs2022/libbitcoin-node-test/libbitcoin-node-test.vcxproj | 2 +- .../libbitcoin-node-test/libbitcoin-node-test.vcxproj.filters | 2 +- builds/msvc/vs2022/libbitcoin-node-test/packages.config | 2 +- builds/msvc/vs2022/libbitcoin-node/libbitcoin-node.vcxproj | 2 +- .../msvc/vs2022/libbitcoin-node/libbitcoin-node.vcxproj.filters | 2 +- builds/msvc/vs2022/libbitcoin-node/packages.config | 2 +- configure.ac | 2 +- console/executor.cpp | 2 +- console/executor.hpp | 2 +- console/main.cpp | 2 +- include/bitcoin/node.hpp | 2 +- include/bitcoin/node/configuration.hpp | 2 +- include/bitcoin/node/define.hpp | 2 +- include/bitcoin/node/full_node.hpp | 2 +- include/bitcoin/node/parser.hpp | 2 +- include/bitcoin/node/protocols/protocol_block_in.hpp | 2 +- include/bitcoin/node/protocols/protocol_block_out.hpp | 2 +- include/bitcoin/node/protocols/protocol_block_sync.hpp | 2 +- include/bitcoin/node/protocols/protocol_header_sync.hpp | 2 +- include/bitcoin/node/protocols/protocol_transaction_in.hpp | 2 +- include/bitcoin/node/protocols/protocol_transaction_out.hpp | 2 +- include/bitcoin/node/sessions/session.hpp | 2 +- include/bitcoin/node/sessions/session_block_sync.hpp | 2 +- include/bitcoin/node/sessions/session_header_sync.hpp | 2 +- include/bitcoin/node/sessions/session_inbound.hpp | 2 +- include/bitcoin/node/sessions/session_manual.hpp | 2 +- include/bitcoin/node/sessions/session_outbound.hpp | 2 +- include/bitcoin/node/settings.hpp | 2 +- include/bitcoin/node/utility/check_list.hpp | 2 +- include/bitcoin/node/utility/header_list.hpp | 2 +- include/bitcoin/node/utility/performance.hpp | 2 +- include/bitcoin/node/utility/reservation.hpp | 2 +- include/bitcoin/node/utility/reservations.hpp | 2 +- include/bitcoin/node/version.hpp | 2 +- install-cmake.sh | 2 +- install-cmakepresets.sh | 2 +- install.sh | 2 +- libbitcoin-node-test_runner.sh | 2 +- libbitcoin-node.pc.in | 2 +- src/configuration.cpp | 2 +- src/full_node.cpp | 2 +- src/parser.cpp | 2 +- src/protocols/protocol_block_in.cpp | 2 +- src/protocols/protocol_block_out.cpp | 2 +- src/protocols/protocol_block_sync.cpp | 2 +- src/protocols/protocol_header_sync.cpp | 2 +- src/protocols/protocol_transaction_in.cpp | 2 +- src/protocols/protocol_transaction_out.cpp | 2 +- src/sessions/session_block_sync.cpp | 2 +- src/sessions/session_header_sync.cpp | 2 +- src/sessions/session_inbound.cpp | 2 +- src/sessions/session_manual.cpp | 2 +- src/sessions/session_outbound.cpp | 2 +- src/settings.cpp | 2 +- src/utility/check_list.cpp | 2 +- src/utility/header_list.cpp | 2 +- src/utility/performance.cpp | 2 +- src/utility/reservation.cpp | 2 +- src/utility/reservations.cpp | 2 +- test/check_list.cpp | 2 +- test/configuration.cpp | 2 +- test/header_list.cpp | 2 +- test/main.cpp | 2 +- test/node.cpp | 2 +- test/performance.cpp | 2 +- test/reservation.cpp | 2 +- test/reservations.cpp | 2 +- test/settings.cpp | 2 +- test/utility.cpp | 2 +- test/utility.hpp | 2 +- 82 files changed, 82 insertions(+), 82 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 121816a5..47065e09 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2020 libbitcoin-node developers (see COPYING). +# Copyright (c) 2014-2023 libbitcoin-node developers (see COPYING). # # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # diff --git a/Makefile.am b/Makefile.am index 75ca0eae..72b90d43 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2020 libbitcoin-node developers (see COPYING). +# Copyright (c) 2014-2023 libbitcoin-node developers (see COPYING). # # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # diff --git a/autogen.sh b/autogen.sh index 1bb6ba28..837acad8 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,6 +1,6 @@ #!/bin/sh ############################################################################### -# Copyright (c) 2014-2020 libbitcoin-node developers (see COPYING). +# Copyright (c) 2014-2023 libbitcoin-node developers (see COPYING). # # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # diff --git a/build.cmd b/build.cmd index b18f58d1..40ef3ed8 100644 --- a/build.cmd +++ b/build.cmd @@ -1,5 +1,5 @@ REM ########################################################################### -REM # Copyright (c) 2014-2020 libbitcoin-node developers (see COPYING). +REM # Copyright (c) 2014-2023 libbitcoin-node developers (see COPYING). REM # REM # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY REM # diff --git a/builds/cmake/CMakeLists.txt b/builds/cmake/CMakeLists.txt index face8f26..920af474 100644 --- a/builds/cmake/CMakeLists.txt +++ b/builds/cmake/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2020 libbitcoin-node developers (see COPYING). +# Copyright (c) 2014-2023 libbitcoin-node developers (see COPYING). # # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # diff --git a/builds/cmake/modules/FindBash-Completion.cmake b/builds/cmake/modules/FindBash-Completion.cmake index c00e1d1b..2cc13f1f 100644 --- a/builds/cmake/modules/FindBash-Completion.cmake +++ b/builds/cmake/modules/FindBash-Completion.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2020 libbitcoin-server developers (see COPYING). +# Copyright (c) 2014-2023 libbitcoin-server developers (see COPYING). # # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # diff --git a/builds/cmake/modules/FindBitcoin-Blockchain.cmake b/builds/cmake/modules/FindBitcoin-Blockchain.cmake index f32a1162..c85b8ce1 100644 --- a/builds/cmake/modules/FindBitcoin-Blockchain.cmake +++ b/builds/cmake/modules/FindBitcoin-Blockchain.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2020 libbitcoin-node developers (see COPYING). +# Copyright (c) 2014-2023 libbitcoin-node developers (see COPYING). # # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # diff --git a/builds/cmake/modules/FindBitcoin-Network.cmake b/builds/cmake/modules/FindBitcoin-Network.cmake index 427d3b3f..059358e3 100644 --- a/builds/cmake/modules/FindBitcoin-Network.cmake +++ b/builds/cmake/modules/FindBitcoin-Network.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2020 libbitcoin-node developers (see COPYING). +# Copyright (c) 2014-2023 libbitcoin-node developers (see COPYING). # # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # diff --git a/builds/msvc/debug.natvis b/builds/msvc/debug.natvis index 486c1c2b..b8360d52 100644 --- a/builds/msvc/debug.natvis +++ b/builds/msvc/debug.natvis @@ -1,6 +1,6 @@