forked from domob1812/namecoin-core
-
Notifications
You must be signed in to change notification settings - Fork 147
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
156 changed files
with
2,586 additions
and
749 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Use proper STREQUAL instead of EQUAL to compare strings.txt | ||
|
||
See: https://github.com/zeromq/libzmq/pull/4711. | ||
|
||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -476,7 +476,7 @@ execute_process( | ||
if(CACHELINE_SIZE STREQUAL "" | ||
OR CACHELINE_SIZE EQUAL 0 | ||
OR CACHELINE_SIZE EQUAL -1 | ||
- OR CACHELINE_SIZE EQUAL "undefined") | ||
+ OR CACHELINE_SIZE STREQUAL "undefined") | ||
set(ZMQ_CACHELINE_SIZE 64) | ||
else() | ||
set(ZMQ_CACHELINE_SIZE ${CACHELINE_SIZE}) |
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,21 @@ | ||
Notable changes | ||
=============== | ||
|
||
P2P and network changes | ||
----------------------- | ||
|
||
- Previously if Bitcoin Core was listening for P2P connections, either using | ||
default settings or via `bind=addr:port` it would always also bind to | ||
`127.0.0.1:8334` to listen for Tor connections. It was not possible to switch | ||
this off, even if the node didn't use Tor. This has been changed and now | ||
`bind=addr:port` results in binding on `addr:port` only. The default behavior | ||
of binding to `0.0.0.0:8333` and `127.0.0.1:8334` has not been changed. | ||
|
||
If you are using a `bind=...` configuration without `bind=...=onion` and rely | ||
on the previous implied behavior to accept incoming Tor connections at | ||
`127.0.0.1:8334`, you need to now make this explicit by using | ||
`bind=... bind=127.0.0.1:8334=onion`. (#22729) | ||
|
||
- Bitcoin Core will now fail to start up if any of its P2P binds fail, rather | ||
than the previous behaviour where it would only abort startup if all P2P | ||
binds had failed. (#22729) |
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,6 @@ | ||
Blockstorage | ||
============ | ||
|
||
Block files are now XOR'd by default with a key stored in the blocksdir. | ||
Previous releases of Bitcoin Core or previous external software will not be able to read the blocksdir with a non-zero XOR-key. | ||
Refer to the `-blocksxor` help for more details. |
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,10 @@ | ||
Testnet4/BIP94 support | ||
----- | ||
|
||
Support for Testnet4 as specified in [BIP94](https://github.com/bitcoin/bips/blob/master/bip-0094.mediawiki) | ||
has been added. The network can be selected with the `-testnet4` option and | ||
the section header is also named `[testnet4]`. | ||
|
||
While the intention is to phase out support for Testnet3 in an upcoming | ||
version, support for it is still available via the known options in this | ||
release. |
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 @@ | ||
RPC | ||
--- | ||
|
||
- Previously when using the `sendrawtransaction` rpc and specifying outputs | ||
that are already in the UXTO set an RPC error code `-27` with RPC error | ||
text "Transaction already in block chain" was returned in response. | ||
The help text has been updated to "Transaction outputs already in utxo set" | ||
to more accurately describe the source of the issue. |
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 @@ | ||
RPC | ||
--- | ||
|
||
- The default mode for the `estimatesmartfee` RPC has been updated from `conservative` to `economical`. | ||
which is expected to reduce overestimation for many users, particularly if Replace-by-Fee is an option. | ||
For users that require high confidence in their fee estimates at the cost of potentially overestimating, | ||
the `conservative` mode remains available. |
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,4 @@ | ||
Full Replace-By-Fee | ||
=================== | ||
|
||
`mempoolfullrbf=1` is now set by default. |
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.