test framework, wallet: rename get_scriptPubKey method to get_output_script

This commit is contained in:
Alfonso Roman Zubeldia
2025-01-24 14:57:36 -03:00
parent fa0232a3e0
commit 723440c5b8
5 changed files with 6 additions and 6 deletions

View File

@ -85,7 +85,7 @@ class ReplaceByFeeTest(BitcoinTestFramework):
confirmed - txout created will be confirmed in the blockchain;
unconfirmed otherwise.
"""
tx = self.wallet.send_to(from_node=node, scriptPubKey=scriptPubKey or self.wallet.get_scriptPubKey(), amount=amount)
tx = self.wallet.send_to(from_node=node, scriptPubKey=scriptPubKey or self.wallet.get_output_script(), amount=amount)
if confirmed:
mempool_size = len(node.getrawmempool())