refactor: Move stopafterblockimport option out of blockstorage#28053
Merged
ryanofsky merged 1 commit intobitcoin:masterfrom Jul 11, 2023
Merged
refactor: Move stopafterblockimport option out of blockstorage#28053ryanofsky merged 1 commit intobitcoin:masterfrom
ryanofsky merged 1 commit intobitcoin:masterfrom
Conversation
Contributor
|
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers. ReviewsSee the guideline for information on the review process.
If your review is incorrectly listed, please react with 👎 to this comment and the bot will ignore it on the next update. ConflictsReviewers, this pull request conflicts with the following ones:
If you consider this pull request important, please also help to review the conflicting pull requests. Ideally, start with the one that should be merged first. |
This was referenced Jul 8, 2023
furszy
approved these changes
Jul 8, 2023
This was referenced Jul 8, 2023
5867bb1 to
f87c21c
Compare
Contributor
Author
|
Rebased 5867bb1 -> f87c21c (blockImportReturn_0 -> blockImportReturn_1, compare)
|
maflcko
reviewed
Jul 11, 2023
This has the benefit of moving the StartShutdown call out of the blockstorage file and thus out of the kernel's responsibility. The user can now decide if he wants to start shutdown / interrupt after a block import or not.
f87c21c to
462390c
Compare
Contributor
Author
|
Updated f87c21c -> 462390c (blockImportReturn_1 -> blockImportReturn_2, compare)
|
maflcko
approved these changes
Jul 11, 2023
Member
maflcko
left a comment
There was a problem hiding this comment.
lgtm ACK 462390c 🗝
Show signature
Signature:
untrusted comment: signature from minisign secret key on empty file; verify via: minisign -Vm "${path_to_any_empty_file}" -P RWTRmVTMeKV5noAMqVlsMugDDCyyTSbA3Re5AkUrhvLVln0tSaFWglOw -x "${path_to_this_whole_four_line_signature_blob}"
RUTRmVTMeKV5npGrKx1nqXCw5zeVHdtdYURB/KlyA/LMFgpNCs+SkW9a8N95d+U4AP1RJMi+krxU1A3Yux4bpwZNLvVBKy0wLgM=
trusted comment: lgtm ACK 462390c85f1174b3cf83dfb0f74922049e5cb8af 🗝
79pOWJJhRKkMSczcP5SRwipfYj5m6V7y44rmI0Q0c7UbllpH+RG/Ei49ay9gaV/dBEYrjhKR0IAUOAi4s+THDw==
sidhujag
pushed a commit
to syscoin/syscoin
that referenced
this pull request
Jul 12, 2023
PastaPastaPasta
pushed a commit
to DashCoreAutoGuix/dash
that referenced
this pull request
Jul 29, 2025
The constant is now defined locally in init.cpp as static constexpr, so the using declaration from node namespace is incorrect and causes build failures. This fixes compilation errors across all platforms. Resolves: bitcoin#28053 backport compilation issue
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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
This has the benefit of moving this StartShutdown call out of the blockstorage file and thus out of the kernel's responsibility. The user can now decide if he wants to start shutdown / interrupt after a block import or not.
This also simplifies #28048, making it one fewer shutdown call to handle.