-
Notifications
You must be signed in to change notification settings - Fork 677
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
feat/remove-pox-sunset #3129
feat/remove-pox-sunset #3129
Conversation
Codecov Report
@@ Coverage Diff @@
## next #3129 +/- ##
===========================================
- Coverage 83.75% 30.41% -53.35%
===========================================
Files 265 267 +2
Lines 207954 209115 +1161
===========================================
- Hits 174166 63595 -110571
- Misses 33788 145520 +111732
Continue to review full report at Codecov.
|
@@ -622,20 +591,16 @@ impl LeaderBlockCommitOp { | |||
|
|||
fn check_single_burn_output(&self) -> Result<(), op_error> { | |||
if self.commit_outs.len() != 1 { | |||
warn!("Invalid post-sunset block commit, should have 1 commit out"); | |||
warn!("Invalid block commit, should have 1 commit out"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Invalid prepare phase block commit
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
This PR partially fixes #2613 by removing the PoX sunset altogether. It does not attempt to gate the PoX sunset code. If we can merge
next
tomaster
before Bitcoin block 766050 (which is in just over 200 days), then no gating will be needed, since the sunset code will never be reached.This PR does not address capping discount mining, which is the other part of #2613. I'll work on that as a branch off of this branch. I'm just trying to get this fix into
next
ASAP.