forked from domob1812/namecoin-core
-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
111 changed files
with
5,193 additions
and
678 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# Copyright (c) 2024-present The Bitcoin Core developers | ||
# Distributed under the MIT software license, see the accompanying | ||
# file COPYING or https://opensource.org/license/mit/. | ||
|
||
#[=======================================================================[ | ||
FindQRencode | ||
------------ | ||
Finds the QRencode header and library. | ||
This is a wrapper around find_package()/pkg_check_modules() commands that: | ||
- facilitates searching in various build environments | ||
- prints a standard log message | ||
#]=======================================================================] | ||
|
||
find_package(PkgConfig QUIET) | ||
if(PKG_CONFIG_FOUND) | ||
pkg_check_modules(PC_QRencode QUIET libqrencode) | ||
endif() | ||
|
||
find_path(QRencode_INCLUDE_DIR | ||
NAMES qrencode.h | ||
PATHS ${PC_QRencode_INCLUDE_DIRS} | ||
) | ||
|
||
find_library(QRencode_LIBRARY_RELEASE | ||
NAMES qrencode | ||
PATHS ${PC_QRencode_LIBRARY_DIRS} | ||
) | ||
find_library(QRencode_LIBRARY_DEBUG | ||
NAMES qrencoded qrencode | ||
PATHS ${PC_QRencode_LIBRARY_DIRS} | ||
) | ||
include(SelectLibraryConfigurations) | ||
select_library_configurations(QRencode) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(QRencode | ||
REQUIRED_VARS QRencode_LIBRARY QRencode_INCLUDE_DIR | ||
VERSION_VAR PC_QRencode_VERSION | ||
) | ||
|
||
if(QRencode_FOUND) | ||
if(NOT TARGET QRencode::QRencode) | ||
add_library(QRencode::QRencode UNKNOWN IMPORTED) | ||
endif() | ||
if(QRencode_LIBRARY_RELEASE) | ||
set_property(TARGET QRencode::QRencode APPEND PROPERTY | ||
IMPORTED_CONFIGURATIONS RELEASE | ||
) | ||
set_target_properties(QRencode::QRencode PROPERTIES | ||
IMPORTED_LOCATION_RELEASE "${QRencode_LIBRARY_RELEASE}" | ||
) | ||
endif() | ||
if(QRencode_LIBRARY_DEBUG) | ||
set_property(TARGET QRencode::QRencode APPEND PROPERTY | ||
IMPORTED_CONFIGURATIONS DEBUG | ||
) | ||
set_target_properties(QRencode::QRencode PROPERTIES | ||
IMPORTED_LOCATION_DEBUG "${QRencode_LIBRARY_DEBUG}" | ||
) | ||
endif() | ||
set_target_properties(QRencode::QRencode PROPERTIES | ||
INTERFACE_INCLUDE_DIRECTORIES "${QRencode_INCLUDE_DIR}" | ||
) | ||
endif() | ||
|
||
mark_as_advanced( | ||
QRencode_INCLUDE_DIR | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Full Replace-By-Fee | ||
=================== | ||
|
||
Starting with v28.0, the `mempoolfullrbf` startup option was set to | ||
default to `1`. With widespread adoption of this policy, users no longer | ||
benefit from disabling it, so the option has been removed, making full | ||
replace-by-fee the standard behavior. (#30592) |
Oops, something went wrong.