forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge bitcoin#25063: test: previous releases: add v23.0
dba1231 test: previous releases: add v23.0 (Sjors Provoost) Pull request description: Follows the same pattern as d8b705f (v22.0) and 8a57a06 (v0.21.0). Starting from v23.0 there is a separate macOS release for x86_64 and aarch64. ACKs for top commit: prusnak: Approach ACK dba1231 Tree-SHA512: 249aeddd5e80e163578581e5c8e9b6579f3694abc3d1fb68dddb7b42d75021ad85266688ec4a365a6631d82a65a19873aff7ba61c0ea59d21f8adbe4b772dc16
- Loading branch information
Showing
4 changed files
with
20 additions
and
6 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,11 +34,12 @@ | |
class BackwardsCompatibilityTest(BitcoinTestFramework): | ||
def set_test_params(self): | ||
self.setup_clean_chain = True | ||
self.num_nodes = 9 | ||
self.num_nodes = 10 | ||
# Add new version after each release: | ||
self.extra_args = [ | ||
["-addresstype=bech32", "[email protected]"], # Pre-release: use to mine blocks. noban for immediate tx relay | ||
["-nowallet", "-walletrbf=1", "-addresstype=bech32", "[email protected]"], # Pre-release: use to receive coins, swap wallets, etc | ||
["-nowallet", "-walletrbf=1", "-addresstype=bech32", "[email protected]"], # v23.0 | ||
["-nowallet", "-walletrbf=1", "-addresstype=bech32", "[email protected]"], # v22.0 | ||
["-nowallet", "-walletrbf=1", "-addresstype=bech32", "[email protected]"], # v0.21.0 | ||
["-nowallet", "-walletrbf=1", "-addresstype=bech32", "[email protected]"], # v0.20.1 | ||
|
@@ -57,6 +58,7 @@ def setup_nodes(self): | |
self.add_nodes(self.num_nodes, extra_args=self.extra_args, versions=[ | ||
None, | ||
None, | ||
230000, | ||
220000, | ||
210000, | ||
200100, | ||
|
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