forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
- Loading branch information
Showing
85 changed files
with
1,382 additions
and
1,044 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
cmake: set minimum version to 3.5 | ||
|
||
Fix generated pkg-config files, see | ||
https://github.com/libevent/libevent/pull/1165. | ||
|
||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -19,7 +19,7 @@ | ||
# start libevent.sln | ||
# | ||
|
||
-cmake_minimum_required(VERSION 3.1 FATAL_ERROR) | ||
+cmake_minimum_required(VERSION 3.5 FATAL_ERROR) | ||
|
||
if (POLICY CMP0054) | ||
cmake_policy(SET CMP0054 NEW) | ||
diff --git a/cmake/AddEventLibrary.cmake b/cmake/AddEventLibrary.cmake | ||
index 04f5837e..d8ea42c4 100644 | ||
--- a/cmake/AddEventLibrary.cmake | ||
+++ b/cmake/AddEventLibrary.cmake | ||
@@ -20,12 +20,12 @@ macro(generate_pkgconfig LIB_NAME) | ||
|
||
set(LIBS "") | ||
foreach (LIB ${LIB_PLATFORM}) | ||
- set(LIBS "${LIBS} -L${LIB}") | ||
+ set(LIBS "${LIBS} -l${LIB}") | ||
endforeach() | ||
|
||
set(OPENSSL_LIBS "") | ||
foreach(LIB ${OPENSSL_LIBRARIES}) | ||
- set(OPENSSL_LIBS "${OPENSSL_LIBS} -L${LIB}") | ||
+ set(OPENSSL_LIBS "${OPENSSL_LIBS} -l${LIB}") | ||
endforeach() | ||
|
||
configure_file("lib${LIB_NAME}.pc.in" "lib${LIB_NAME}.pc" @ONLY) |
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,8 @@ | ||
Wallet | ||
--- | ||
|
||
The wallet now detects when wallet transactions conflict with the mempool. Mempool | ||
conflicting transactions can be seen in the `"mempoolconflicts"` field of | ||
`gettransaction`. The inputs of mempool conflicted transactions can now be respent | ||
without manually abandoning the transactions when the parent transaction is dropped | ||
from the mempool, which can cause wallet balances to appear higher. |
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,11 @@ | ||
Mempool Policy Changes | ||
---------------------- | ||
|
||
- Transactions with version number set to 3 are now treated as standard on all networks (#29496), | ||
subject to Opt-in Topologically Restricted Until Confirmation (TRUC) Transactions policy as | ||
described in [BIP 431](https://github.com/bitcoin/bips/blob/master/bip-0431.mediawiki). The | ||
policy includes limits on spending unconfirmed outputs (#28948), eviction of a previous descendant | ||
if a more incentive-compatible one is submitted (#29306), and a maximum transaction size of 10,000vB | ||
(#29873). These restrictions simplify the assessment of incentive compatibility of accepting or | ||
replacing TRUC transactions, thus ensuring any replacements are more profitable for the node and | ||
making fee-bumping more reliable. |
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
Oops, something went wrong.