From 101071722ee839668ed70eafccfd2f22d636940d Mon Sep 17 00:00:00 2001 From: rkrux Date: Wed, 13 May 2026 17:06:51 +0530 Subject: [PATCH] psbt, test: remove address type restrictions in test Because the corresponding Taproot fields were added in PSBT in PR 22558, so these restrictions are no longer necessary. Github-Pull: #35279 Rebased-From: 81348576cc411a63da295a10a3846302419a18e0 --- test/functional/rpc_psbt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/rpc_psbt.py b/test/functional/rpc_psbt.py index cc443f6a7cf..35c694d7454 100755 --- a/test/functional/rpc_psbt.py +++ b/test/functional/rpc_psbt.py @@ -65,7 +65,7 @@ class PSBTTest(BitcoinTestFramework): def set_test_params(self): self.num_nodes = 3 self.extra_args = [ - ["-walletrbf=1", "-addresstype=bech32", "-changetype=bech32"], #TODO: Remove address type restrictions once taproot has psbt extensions + ["-walletrbf=1"], ["-walletrbf=0", "-changetype=legacy"], [] ]