forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 11
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
Add max coinbase out sigops to CoinbaseOutputDataSize #45
Open
Sjors
wants to merge
46
commits into
sv2
Choose a base branch
from
sv2-sigops
base: sv2
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
Sjors
force-pushed
the
sv2
branch
2 times, most recently
from
June 18, 2024 17:24
8e209bc
to
bba5243
Compare
Sjors
force-pushed
the
sv2
branch
4 times, most recently
from
June 25, 2024 12:17
7bb7ecd
to
857735e
Compare
Sjors
force-pushed
the
sv2
branch
4 times, most recently
from
July 2, 2024 20:05
f7bf25d
to
e65a074
Compare
Sjors
force-pushed
the
sv2
branch
9 times, most recently
from
July 17, 2024 15:07
44c8fa0
to
375105a
Compare
Sjors
force-pushed
the
sv2
branch
4 times, most recently
from
July 19, 2024 09:03
d0d5483
to
fe730f1
Compare
I'll give this a rebase after bitcoin#30440 lands. |
Sjors
force-pushed
the
sv2
branch
2 times, most recently
from
August 13, 2024 18:57
58a98ea
to
e250789
Compare
Implemented starting from a copy of V2Transport and the V2TransportTester, modifying it to fit Stratum v2 and Noise Protocol requirements. Co-Authored-By: Christopher Coverdale <[email protected]> Co-Authored-By: Fi3
Co-Authored-By: Christopher Coverdale <[email protected]>
Co-Authored-By: Vasil Dimov <[email protected]>
Ensure KernelNotifications m_tip_block is set even if no new block arrives.
This change avoids ambiguity when no tip is connected and it is compared to uint256::ZERO.
Alternate calls between Chainman's ProcessNewBlock and submitSolution. The Chainman code path is used in production, so it's important to keep test coverage for it. Use createNewBlock via the interface instead of using the BlockAssembler directly. The latter is always called via the interface in production code.
The template provider will listen for a Job Declarator client. It can establish a connection and detect various protocol errors. Co-Authored-By: Christopher Coverdale <[email protected]> Co-Authored-By: Fi3
Co-authored-by: Christopher Coverdale <[email protected]>
Determine future_template only once
Co-authored-by: Vasil Dimov <[email protected]>
Rebased on the latest |
This makes the Template Provider backward compatible if the spec is updated.
Sjors
force-pushed
the
sv2
branch
3 times, most recently
from
December 19, 2024 06:15
8cf7578
to
a1c1bd9
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Implements stratum-mining/sv2-spec#86 for the Template Provider.