Skip to content

Commit 9c246b8

Browse files
committed
[test] backwards compatibility: bump v0.19.0.1 to v0.19.1
1 parent 89a28e0 commit 9c246b8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

ci/test/05_before_script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ if [ -z "$NO_DEPENDS" ]; then
3737
fi
3838
if [ "$TEST_PREVIOUS_RELEASES" = "true" ]; then
3939
BEGIN_FOLD previous-versions
40-
DOCKER_EXEC contrib/devtools/previous_release.sh -b -t "$PREVIOUS_RELEASES_DIR" v0.15.2 v0.16.3 v0.17.1 v0.18.1 v0.19.0.1
40+
DOCKER_EXEC contrib/devtools/previous_release.sh -b -t "$PREVIOUS_RELEASES_DIR" v0.15.2 v0.16.3 v0.17.1 v0.18.1 v0.19.1
4141
END_FOLD
4242
fi

test/functional/feature_backwards_compatibility.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
Test various backwards compatibility scenarios. Download the previous node binaries:
88
9-
contrib/devtools/previous_release.sh -b v0.19.0.1 v0.18.1 v0.17.1 v0.16.3 v0.15.2
9+
contrib/devtools/previous_release.sh -b v0.19.1 v0.18.1 v0.17.1 v0.16.3 v0.15.2
1010
1111
v0.15.2 is not required by this test, but it is used in wallet_upgradewallet.py.
1212
Due to a hardfork in regtest, it can't be used to sync nodes.
@@ -41,7 +41,7 @@ def set_test_params(self):
4141
self.extra_args = [
4242
["-addresstype=bech32"], # Pre-release: use to mine blocks
4343
["-nowallet", "-walletrbf=1", "-addresstype=bech32"], # Pre-release: use to receive coins, swap wallets, etc
44-
["-nowallet", "-walletrbf=1", "-addresstype=bech32"], # v0.19.0.1
44+
["-nowallet", "-walletrbf=1", "-addresstype=bech32"], # v0.19.1
4545
["-nowallet", "-walletrbf=1", "-addresstype=bech32"], # v0.18.1
4646
["-nowallet", "-walletrbf=1", "-addresstype=bech32"], # v0.17.1
4747
["-nowallet", "-walletrbf=1", "-addresstype=bech32"], # v0.16.3
@@ -55,7 +55,7 @@ def setup_nodes(self):
5555
self.add_nodes(self.num_nodes, extra_args=self.extra_args, versions=[
5656
None,
5757
None,
58-
190001,
58+
190100,
5959
180100,
6060
170100,
6161
160300,

test/functional/wallet_upgradewallet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
Test upgradewallet RPC. Download node binaries:
88
9-
contrib/devtools/previous_release.sh -b v0.19.0.1 v0.18.1 v0.17.1 v0.16.3 v0.15.2
9+
contrib/devtools/previous_release.sh -b v0.19.1 v0.18.1 v0.17.1 v0.16.3 v0.15.2
1010
1111
Only v0.15.2 and v0.16.3 are required by this test. The others are used in feature_backwards_compatibility.py
1212
"""

0 commit comments

Comments
 (0)