forked from bitcoin/bitcoin
-
Couldn't load subscription status.
- Fork 1.2k
backport: merge bitcoin#24098, #26143, #24576, #24739, #25011, #25045, #25106, #25213, #25003, #24629, #24640, #24913, #24924, #25023, #25887, #25810, #25792, #25227, #27218 (auxiliary backports: part 26) #6784
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
624727f
merge bitcoin#24098: Use query parameters to control resource loading
kwvg 53bfca8
merge bitcoin#26143: wait for the expected basic block filter index i…
kwvg 2c6d522
merge bitcoin#24576: remove redundant base58 implementation
kwvg be86792
merge bitcoin#24739: Fix intermittent test failure in wallet_listrece…
kwvg 68e4f98
merge bitcoin#25011: Do not always create a descriptor wallet in wall…
kwvg 6f09738
merge bitcoin#25045: add coverage for invalid requests for `blockfilt…
kwvg e39b9d8
merge bitcoin#25106: check `fopen` return code
kwvg 0b915e7
merge bitcoin#25213: fix crash at coinselection, add missing fee rate
kwvg fdba53e
merge bitcoin#25003: fix `coin_selection:aps_create_tx_internal` call…
kwvg b6b94b2
merge bitcoin#24629: Return the height of the actual last pruned block
kwvg f0975dc
merge bitcoin#24640: Correct description of getblockchaininfo's prune…
kwvg 7b09514
merge bitcoin#24913: Add a benchmark for wallet loading
kwvg 6c8a8f7
merge bitcoin#24924: Make WalletLoading benchmark run faster
kwvg 528795d
merge bitcoin#25023: Remove unused SetTip(nullptr) code
kwvg 83acd1d
merge bitcoin#25887: avoid unsetting service bits from `nLocalServices`
kwvg f55742b
merge bitcoin#25810: rename MAX_{ANCESTORS,DESCENDANTS} to DEFAULT_{A…
kwvg cccd71f
merge bitcoin#25792: add tests for `datacarrier` and `datacarriersize…
kwvg 0f51413
fix: use properly formed hex encoding in `evo_assetlock`
kwvg b8c3535
merge bitcoin#25227: Handle invalid hex encoding in ParseHex
kwvg cc0e2d1
merge bitcoin#27218: Work around ParseHex gcc cross compiler bug
kwvg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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,20 @@ | ||
| Notable changes | ||
| =============== | ||
|
|
||
| Updated REST APIs | ||
| ----------------- | ||
|
|
||
| - The `/headers/` and `/blockfilterheaders/` endpoints have been updated to use | ||
| a query parameter instead of path parameter to specify the result count. The | ||
| count parameter is now optional, and defaults to 5 for both endpoints. The old | ||
| endpoints are still functional, and have no documented behaviour change. | ||
|
|
||
| For `/headers`, use | ||
| `GET /rest/headers/<BLOCK-HASH>.<bin|hex|json>?count=<COUNT=5>` | ||
| instead of | ||
| `GET /rest/headers/<COUNT>/<BLOCK-HASH>.<bin|hex|json>` (deprecated) | ||
|
|
||
| For `/blockfilterheaders/`, use | ||
| `GET /rest/blockfilterheaders/<FILTERTYPE>/<BLOCK-HASH>.<bin|hex|json>?count=<COUNT=5>` | ||
| instead of | ||
| `GET /rest/blockfilterheaders/<FILTERTYPE>/<COUNT>/<BLOCK-HASH>.<bin|hex|json>` (deprecated) |
This file contains hidden or 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 @@ | ||
| Updated RPCs | ||
| ------------ | ||
|
|
||
| - The return value of the `pruneblockchain` method had an off-by-one bug, | ||
| returning the height of the block *after* the most recent pruned. This has | ||
| been corrected, and it now returns the height of the last pruned block as | ||
| documented. |
This file contains hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.