From cec14ee47d71d8dd5ca8f90b760d807c3c8933a5 Mon Sep 17 00:00:00 2001 From: Sjors Provoost Date: Tue, 18 Mar 2025 09:45:04 +0100 Subject: [PATCH] test: switch wallet_crosschain.py to signet Testnet3 is deprecated. Instead of moving to testnet4, which might also be deprecated in the future, use signet. --- test/functional/wallet_crosschain.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/test/functional/wallet_crosschain.py b/test/functional/wallet_crosschain.py index 3505d33e513..a496694d126 100755 --- a/test/functional/wallet_crosschain.py +++ b/test/functional/wallet_crosschain.py @@ -20,10 +20,11 @@ class WalletCrossChain(BitcoinTestFramework): def setup_network(self): self.add_nodes(self.num_nodes) - # Switch node 1 to testnet before starting it. - self.nodes[1].chain = 'testnet3' - self.nodes[1].extra_args = ['-maxconnections=0', '-prune=550'] # disable testnet sync - self.nodes[1].replace_in_config([('regtest=', 'testnet='), ('[regtest]', '[test]')]) + # Switch node 1 to any network different from regtest before starting it. + self.nodes[1].chain = 'signet' + # Disable network sync and prevent disk space warning on low resource CI + self.nodes[1].extra_args = ['-maxconnections=0', '-prune=550'] + self.nodes[1].replace_in_config([('regtest=', 'signet='), ('[regtest]', '[signet]')]) self.start_nodes() def run_test(self):