fix: remove mn_rr fork usage from functional test of EHF#6270
Merged
PastaPastaPasta merged 2 commits intodashpay:developfrom Sep 17, 2024
Merged
fix: remove mn_rr fork usage from functional test of EHF#6270PastaPastaPasta merged 2 commits intodashpay:developfrom
PastaPastaPasta merged 2 commits intodashpay:developfrom
Conversation
UdjinM6
reviewed
Sep 13, 2024
test/functional/feature_mnehf.py
Outdated
There was a problem hiding this comment.
Suggested change
| assert_equal(get_bip9_details(node, 'testdummy')['status'], 'defined') | |
| self.check_fork('defined') |
should also drop
self.log.info(f"bip9: {get_bip9_details(node, 'mn_rr')}")
assert_equal(get_bip9_details(node, 'mn_rr')['status'], 'active')
at the end of the test
5 tasks
PastaPastaPasta
added a commit
that referenced
this pull request
Oct 1, 2024
…ck - 6/n 9a9d0d5 feat: drop SPORK 24 (EHF) so far as this feature works on testnet / mainnet (Konstantin Akimov) da0dc06 perf: optimize feature_mnehf.py by generating less blocks (Konstantin Akimov) 0de3923 feat: bury fork mn_rr (masternode reward reallocation) (Konstantin Akimov) Pull request description: ## Issue being fixed or feature implemented MN_RR is activated on mainnet: time to bury it! ## What was done? Hard-fork mn_rr is buried. Prior fixes are done here: #6270 and #6269 ## How Has This Been Tested? Run unit and functional tests ## Breaking Changes N/A ## Checklist: - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas - [x] I have added or updated relevant unit/integration/functional/e2e tests - [x] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone ACKs for top commit: UdjinM6: light ACK 9a9d0d5 PastaPastaPasta: utACK 9a9d0d5 Tree-SHA512: 73ea0ca1270f15f6f1193efbaf402d476c84e9a843af85b7eae3e40199f4c943ad40f58e062b8db20e1c5c69c1a85579ebaf0722f1044ee2e1a4e7f96c58e645
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 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.
Issue being fixed or feature implemented
Using mn_rr in feature_mnehf.py is a blocker for burying mn_rr fork.
What was done?
Removed useless conditions, uses testdummy fork instead mn_rr in ehf functional test.
How Has This Been Tested?
Run it
test/functional/feature_mnehf.pyBreaking Changes
N/A
Checklist: