Page MenuHomePhabricator

test: don't pad_tx in MiniWallet.sign_tx
Needs ReviewPublic

Authored by PiRK on Sat, Apr 5, 15:15.

Details

Reviewers
None
Group Reviewers
Restricted Project
Summary

This is surprising behavior, and will generate non-standard transactions with 2 OPRETURN outputs if we try to use the target_size parameter in MiniWallet.create_self_transfer if the wallet is not in RAW_P2PK mode. The only reason it currently works in RAW_P2PK mode is that the tx is alreadly larger than 100 bytes and pad_tx(tx, 100) is a no-op.

Adjust the test that use MiniWallet.sign_tx. Note that pad_tx already take care of updating the tx hash, so no need to call tx.rehash.

Test Plan

ninja check-functional-extended

Diff Detail

Repository
rABC Bitcoin ABC
Branch
wallet_pad_txwq
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 32907
Build 65298: Build Diffbuild-diff · build-without-wallet · build-clang-tidy · build-debug · build-clang
Build 65297: arc lint + arc unit

Event Timeline

PiRK requested review of this revision.Sat, Apr 5, 15:15

Failed tests logs:

====== Bitcoin ABC functional tests: abc_mempool_chainedtx.py ======

------- Stdout: -------
2025-04-05T15:20:21.890000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/abc_mempool_chainedtx_216
2025-04-05T15:20:22.565000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/abc_mempool_chainedtx.py", line 27, in run_test
    for t in wallet.create_self_transfer_chain(
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 432, in create_self_transfer_chain
    tx = self.create_self_transfer(utxo_to_spend=chaintip_utxo)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:22.616000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:22.817000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/abc_mempool_chainedtx_216
2025-04-05T15:20:22.817000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/abc_mempool_chainedtx_216/test_framework.log
2025-04-05T15:20:22.817000Z TestFramework (ERROR): 
2025-04-05T15:20:22.817000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/abc_mempool_chainedtx_216' to consolidate all logs
2025-04-05T15:20:22.817000Z TestFramework (ERROR): 
2025-04-05T15:20:22.817000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:22.818000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:22.818000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: abc_mining_rtt.py ======

------- Stdout: -------
2025-04-05T15:19:45.452000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/abc_mining_rtt_35
2025-04-05T15:19:46.087000Z TestFramework (INFO): Check the block template is updated with the relevant RTT info
2025-04-05T15:19:46.131000Z TestFramework (INFO): Check the node tries to mine blocks with the real time difficulty
2025-04-05T15:19:53.187000Z TestFramework (INFO): Check the RTT is updated when longpoll returns
2025-04-05T15:19:53.266000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/abc_mining_rtt.py", line 180, in run_test
    mempool_tx = wallet.send_self_transfer(from_node=node)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:53.268000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:53.470000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/abc_mining_rtt_35
2025-04-05T15:19:53.470000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/abc_mining_rtt_35/test_framework.log
2025-04-05T15:19:53.470000Z TestFramework (ERROR): 
2025-04-05T15:19:53.470000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/abc_mining_rtt_35' to consolidate all logs
2025-04-05T15:19:53.470000Z TestFramework (ERROR): 
2025-04-05T15:19:53.470000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:53.470000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:53.470000Z TestFramework (ERROR):
------- Stderr: -------
Exception in thread Thread-1:
Traceback (most recent call last):
  File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
    self.run()
  File "/work/test/functional/abc_mining_rtt.py", line 38, in run
    self.longpoll_template = self.node.getblocktemplate(
                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/coverage.py", line 46, in __call__
    return_val = self.auth_service_proxy_instance.__call__(*args, **kwargs)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/authproxy.py", line 146, in __call__
    response, status = self._request(
                       ^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/authproxy.py", line 115, in _request
    return self._get_response()
           ^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/authproxy.py", line 206, in _get_response
    raise JSONRPCException(
test_framework.authproxy.JSONRPCException: non-JSON HTTP response with '503 Service Unavailable' from server (-342)
====== Bitcoin ABC functional tests: abc_p2p_avalanche_cooldown.py ======

------- Stdout: -------
2025-04-05T15:19:56.566000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/abc_p2p_avalanche_cooldown_54
2025-04-05T15:19:59.327000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/abc_p2p_avalanche_cooldown.py", line 65, in run_test
    txid = int(wallet.send_self_transfer(from_node=node)["txid"], 16)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:59.378000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:59.580000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/abc_p2p_avalanche_cooldown_54
2025-04-05T15:19:59.580000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/abc_p2p_avalanche_cooldown_54/test_framework.log
2025-04-05T15:19:59.580000Z TestFramework (ERROR): 
2025-04-05T15:19:59.580000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/abc_p2p_avalanche_cooldown_54' to consolidate all logs
2025-04-05T15:19:59.580000Z TestFramework (ERROR): 
2025-04-05T15:19:59.580000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:59.580000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:59.580000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: abc_p2p_avalanche_transaction_finalization.py ======

------- Stdout: -------
2025-04-05T15:19:11.969000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/abc_p2p_avalanche_transaction_finalization_4
2025-04-05T15:19:19.490000Z TestFramework (INFO): Check the finalization of simple non-chained txs
2025-04-05T15:19:22.821000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/abc_p2p_avalanche_transaction_finalization.py", line 226, in run_test
    self.test_simple_txs()
  File "/work/test/functional/abc_p2p_avalanche_transaction_finalization.py", line 111, in test_simple_txs
    txids = [
            ^
  File "/work/test/functional/abc_p2p_avalanche_transaction_finalization.py", line 112, in <listcomp>
    int(self.wallet.send_self_transfer(from_node=node)["txid"], 16)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:22.823000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:23.025000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/abc_p2p_avalanche_transaction_finalization_4
2025-04-05T15:19:23.025000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/abc_p2p_avalanche_transaction_finalization_4/test_framework.log
2025-04-05T15:19:23.025000Z TestFramework (ERROR): 
2025-04-05T15:19:23.025000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/abc_p2p_avalanche_transaction_finalization_4' to consolidate all logs
2025-04-05T15:19:23.025000Z TestFramework (ERROR): 
2025-04-05T15:19:23.025000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:23.025000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:23.025000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: abc_p2p_avalanche_transaction_voting.py ======

------- Stdout: -------
2025-04-05T15:19:12.057000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/abc_p2p_avalanche_transaction_voting_3
2025-04-05T15:19:13.048000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/abc_p2p_avalanche_transaction_voting.py", line 84, in run_test
    tx_ids = [
             ^
  File "/work/test/functional/abc_p2p_avalanche_transaction_voting.py", line 85, in <listcomp>
    int(wallet.send_self_transfer(from_node=node)["txid"], 16)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:13.100000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:13.201000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/abc_p2p_avalanche_transaction_voting_3
2025-04-05T15:19:13.201000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/abc_p2p_avalanche_transaction_voting_3/test_framework.log
2025-04-05T15:19:13.201000Z TestFramework (ERROR): 
2025-04-05T15:19:13.201000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/abc_p2p_avalanche_transaction_voting_3' to consolidate all logs
2025-04-05T15:19:13.201000Z TestFramework (ERROR): 
2025-04-05T15:19:13.201000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:13.201000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:13.201000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: feature_bip68_sequence.py ======

------- Stdout: -------
2025-04-05T15:19:45.523000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_bip68_sequence_36
2025-04-05T15:19:46.223000Z TestFramework (INFO): Running test disable flag
2025-04-05T15:19:46.224000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_bip68_sequence.py", line 51, in run_test
    self.test_disable_flag()
  File "/work/test/functional/feature_bip68_sequence.py", line 78, in test_disable_flag
    utxo = self.wallet.send_self_transfer(from_node=self.nodes[0])["new_utxo"]
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:46.276000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:46.479000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_bip68_sequence_36
2025-04-05T15:19:46.479000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_bip68_sequence_36/test_framework.log
2025-04-05T15:19:46.479000Z TestFramework (ERROR): 
2025-04-05T15:19:46.479000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_bip68_sequence_36' to consolidate all logs
2025-04-05T15:19:46.479000Z TestFramework (ERROR): 
2025-04-05T15:19:46.479000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:46.479000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:46.479000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: feature_cltv.py ======

------- Stdout: -------
2025-04-05T15:20:07.857000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_cltv_104
2025-04-05T15:20:08.513000Z TestFramework (INFO): Mining 1349 blocks
2025-04-05T15:20:10.295000Z TestFramework (INFO): Test that an invalid-according-to-CLTV transaction can still appear in a block
2025-04-05T15:20:10.295000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_cltv.py", line 94, in run_test
    fundtx = wallet.create_self_transfer()["tx"]
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:10.346000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:10.497000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_cltv_104
2025-04-05T15:20:10.497000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_cltv_104/test_framework.log
2025-04-05T15:20:10.497000Z TestFramework (ERROR): 
2025-04-05T15:20:10.498000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_cltv_104' to consolidate all logs
2025-04-05T15:20:10.498000Z TestFramework (ERROR): 
2025-04-05T15:20:10.498000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:10.498000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:10.498000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: feature_coinstatsindex.py ======

------- Stdout: -------
2025-04-05T15:19:57.514000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_coinstatsindex_61
2025-04-05T15:19:59.305000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_coinstatsindex.py", line 37, in run_test
    self._test_coin_stats_index()
  File "/work/test/functional/feature_coinstatsindex.py", line 65, in _test_coin_stats_index
    self.wallet.send_self_transfer(from_node=node)
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:59.357000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:59.559000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_coinstatsindex_61
2025-04-05T15:19:59.559000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_coinstatsindex_61/test_framework.log
2025-04-05T15:19:59.559000Z TestFramework (ERROR): 
2025-04-05T15:19:59.559000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_coinstatsindex_61' to consolidate all logs
2025-04-05T15:19:59.559000Z TestFramework (ERROR): 
2025-04-05T15:19:59.559000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:59.559000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:59.559000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: feature_csv_activation.py ======

------- Stdout: -------
2025-04-05T15:19:31.993000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_csv_activation_25
2025-04-05T15:19:32.923000Z TestFramework (INFO): Generate blocks in the past for coinbase outputs.
2025-04-05T15:19:37.673000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_csv_activation.py", line 244, in run_test
    bip68inputs.append(self.send_generic_input_tx(self.coinbase_blocks))
                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/feature_csv_activation.py", line 122, in send_generic_input_tx
    return self.miniwallet.send_self_transfer(
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:37.724000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:37.926000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_csv_activation_25
2025-04-05T15:19:37.926000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_csv_activation_25/test_framework.log
2025-04-05T15:19:37.926000Z TestFramework (ERROR): 
2025-04-05T15:19:37.926000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_csv_activation_25' to consolidate all logs
2025-04-05T15:19:37.926000Z TestFramework (ERROR): 
2025-04-05T15:19:37.927000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:37.927000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:37.927000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: feature_dersig.py ======

------- Stdout: -------
2025-04-05T15:20:07.867000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_dersig_105
2025-04-05T15:20:08.518000Z TestFramework (INFO): Mining 1250 blocks
2025-04-05T15:20:10.710000Z TestFramework (INFO): Test that blocks must now be at least version 3
2025-04-05T15:20:10.813000Z TestFramework (INFO): Test that transactions with non-DER signatures cannot appear in a block
2025-04-05T15:20:10.817000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_dersig.py", line 79, in run_test
    spendtx = self.create_tx(self.coinbase_txids[1])
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/feature_dersig.py", line 47, in create_tx
    return self.miniwallet.create_self_transfer(utxo_to_spend=utxo_to_spend)["tx"]
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:10.868000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:11.120000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_dersig_105
2025-04-05T15:20:11.120000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_dersig_105/test_framework.log
2025-04-05T15:20:11.120000Z TestFramework (ERROR): 
2025-04-05T15:20:11.120000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_dersig_105' to consolidate all logs
2025-04-05T15:20:11.120000Z TestFramework (ERROR): 
2025-04-05T15:20:11.120000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:11.120000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:11.120000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: feature_fastprune.py ======

------- Stdout: -------
2025-04-05T15:20:23.299000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_fastprune_242
2025-04-05T15:20:23.830000Z TestFramework (INFO): ensure that large blocks don't crash or freeze in -fastprune
2025-04-05T15:20:23.892000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_fastprune.py", line 19, in run_test
    tx = wallet.create_self_transfer()["tx"]
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:23.943000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:24.145000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_fastprune_242
2025-04-05T15:20:24.145000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_fastprune_242/test_framework.log
2025-04-05T15:20:24.145000Z TestFramework (ERROR): 
2025-04-05T15:20:24.145000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/feature_fastprune_242' to consolidate all logs
2025-04-05T15:20:24.145000Z TestFramework (ERROR): 
2025-04-05T15:20:24.145000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:24.145000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:24.145000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mempool_expiry.py ======

------- Stdout: -------
2025-04-05T15:20:18.490000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_expiry_188
2025-04-05T15:20:19.810000Z TestFramework (INFO): Test default mempool expiry timeout of 336 hours.
2025-04-05T15:20:19.810000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_expiry.py", line 120, in run_test
    self.test_transaction_expiry(DEFAULT_MEMPOOL_EXPIRY_HOURS)
  File "/work/test/functional/mempool_expiry.py", line 33, in test_transaction_expiry
    parent_txid = self.wallet.send_self_transfer(from_node=node)["txid"]
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:19.862000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:20.063000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_expiry_188
2025-04-05T15:20:20.063000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_expiry_188/test_framework.log
2025-04-05T15:20:20.063000Z TestFramework (ERROR): 
2025-04-05T15:20:20.063000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_expiry_188' to consolidate all logs
2025-04-05T15:20:20.063000Z TestFramework (ERROR): 
2025-04-05T15:20:20.063000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:20.063000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:20.063000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mempool_limit.py ======

------- Stdout: -------
2025-04-05T15:19:53.375000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_limit_48
2025-04-05T15:19:53.758000Z TestFramework (INFO): Check that mempoolminfee is minrelaytxfee
2025-04-05T15:19:53.759000Z TestFramework (INFO): Fill the mempool until eviction is triggered and the mempoolminfee rises
2025-04-05T15:19:54.078000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_limit.py", line 165, in run_test
    fill_mempool(self, node, self.wallet)
  File "/work/test/functional/test_framework/util.py", line 590, in fill_mempool
    tx_to_be_evicted_id = miniwallet.send_self_transfer(
                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:54.130000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:54.331000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_limit_48
2025-04-05T15:19:54.331000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_limit_48/test_framework.log
2025-04-05T15:19:54.331000Z TestFramework (ERROR): 
2025-04-05T15:19:54.332000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_limit_48' to consolidate all logs
2025-04-05T15:19:54.332000Z TestFramework (ERROR): 
2025-04-05T15:19:54.332000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:54.332000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:54.332000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mempool_packages.py ======

------- Stdout: -------
2025-04-05T15:20:18.657000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_packages_189
2025-04-05T15:20:19.448000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_packages.py", line 27, in run_test
    chain = self.wallet.send_self_transfer_chain(
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 445, in send_self_transfer_chain
    chain = self.create_self_transfer_chain(**kwargs)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 432, in create_self_transfer_chain
    tx = self.create_self_transfer(utxo_to_spend=chaintip_utxo)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:19.499000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:19.751000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_packages_189
2025-04-05T15:20:19.751000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_packages_189/test_framework.log
2025-04-05T15:20:19.751000Z TestFramework (ERROR): 
2025-04-05T15:20:19.751000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_packages_189' to consolidate all logs
2025-04-05T15:20:19.751000Z TestFramework (ERROR): 
2025-04-05T15:20:19.751000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:19.751000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:19.751000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mempool_reorg.py ======

------- Stdout: -------
2025-04-05T15:20:18.827000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_reorg_190
2025-04-05T15:20:19.489000Z TestFramework (INFO): Add 4 coinbase utxos to the miniwallet
2025-04-05T15:20:19.494000Z TestFramework (INFO): Create three transactions spending from coinbase utxos: spend_1, spend_2, spend_3
2025-04-05T15:20:19.494000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_reorg.py", line 46, in run_test
    spend_1 = wallet.create_self_transfer(utxo_to_spend=utxo_1)
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:19.545000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:19.747000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_reorg_190
2025-04-05T15:20:19.747000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_reorg_190/test_framework.log
2025-04-05T15:20:19.747000Z TestFramework (ERROR): 
2025-04-05T15:20:19.747000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_reorg_190' to consolidate all logs
2025-04-05T15:20:19.747000Z TestFramework (ERROR): 
2025-04-05T15:20:19.747000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:19.747000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:19.747000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mempool_resurrect.py ======

------- Stdout: -------
2025-04-05T15:20:23.873000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_resurrect_250
2025-04-05T15:20:24.469000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_resurrect.py", line 29, in run_test
    spends1_ids = [
                  ^
  File "/work/test/functional/mempool_resurrect.py", line 30, in <listcomp>
    wallet.send_self_transfer(from_node=node)["txid"] for _ in range(3)
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:24.521000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:24.672000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_resurrect_250
2025-04-05T15:20:24.672000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_resurrect_250/test_framework.log
2025-04-05T15:20:24.672000Z TestFramework (ERROR): 
2025-04-05T15:20:24.672000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_resurrect_250' to consolidate all logs
2025-04-05T15:20:24.672000Z TestFramework (ERROR): 
2025-04-05T15:20:24.672000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:24.672000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:24.672000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mempool_spend_coinbase.py ======

------- Stdout: -------
2025-04-05T15:20:24.186000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_spend_coinbase_251
2025-04-05T15:20:24.769000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_spend_coinbase.py", line 41, in run_test
    spend_mature_id = wallet.send_self_transfer(
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:24.820000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:25.022000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_spend_coinbase_251
2025-04-05T15:20:25.022000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_spend_coinbase_251/test_framework.log
2025-04-05T15:20:25.022000Z TestFramework (ERROR): 
2025-04-05T15:20:25.022000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mempool_spend_coinbase_251' to consolidate all logs
2025-04-05T15:20:25.022000Z TestFramework (ERROR): 
2025-04-05T15:20:25.022000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:25.022000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:25.022000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mining_getblocktemplate_longpoll.py ======

------- Stdout: -------
2025-04-05T15:19:12.375000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mining_getblocktemplate_longpoll_15
2025-04-05T15:19:12.998000Z TestFramework (INFO): Test that longpollid doesn't change between successive getblocktemplate() invocations if nothing else happens
2025-04-05T15:19:14.017000Z TestFramework (INFO): Test that longpoll waits if we do nothing
2025-04-05T15:19:19.250000Z TestFramework (INFO): Test that longpoll will terminate if another node generates a block
2025-04-05T15:19:19.288000Z TestFramework (INFO): Test that longpoll will terminate if we generate a block ourselves
2025-04-05T15:19:19.320000Z TestFramework (INFO): Test that introducing a new transaction into the mempool will terminate the longpoll
2025-04-05T15:19:19.327000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mining_getblocktemplate_longpoll.py", line 106, in run_test
    miniwallets[0].send_self_transfer(
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:19.379000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:19.531000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mining_getblocktemplate_longpoll_15
2025-04-05T15:19:19.531000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mining_getblocktemplate_longpoll_15/test_framework.log
2025-04-05T15:19:19.531000Z TestFramework (ERROR): 
2025-04-05T15:19:19.531000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mining_getblocktemplate_longpoll_15' to consolidate all logs
2025-04-05T15:19:19.531000Z TestFramework (ERROR): 
2025-04-05T15:19:19.531000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:19.531000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:19.531000Z TestFramework (ERROR):
------- Stderr: -------
Exception in thread Thread-3:
Traceback (most recent call last):
  File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
    self.run()
  File "/work/test/functional/mining_getblocktemplate_longpoll.py", line 35, in run
    self.node.getblocktemplate({"longpollid": self.longpollid})
  File "/work/test/functional/test_framework/coverage.py", line 46, in __call__
    return_val = self.auth_service_proxy_instance.__call__(*args, **kwargs)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/authproxy.py", line 150, in __call__
    raise JSONRPCException(response["error"], status)
test_framework.authproxy.JSONRPCException: Shutting down (-9)
====== Bitcoin ABC functional tests: mining_prioritisetransaction.py ======

------- Stdout: -------
2025-04-05T15:20:07.936000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mining_prioritisetransaction_107
2025-04-05T15:20:08.557000Z TestFramework (INFO): Test diamond-shape package with priority
2025-04-05T15:20:08.558000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mining_prioritisetransaction.py", line 222, in run_test
    self.test_diamond()
  File "/work/test/functional/mining_prioritisetransaction.py", line 44, in test_diamond
    tx_o_a = self.wallet.send_self_transfer_multi(
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 294, in send_self_transfer_multi
    tx = self.create_self_transfer_multi(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:08.609000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:08.760000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mining_prioritisetransaction_107
2025-04-05T15:20:08.760000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mining_prioritisetransaction_107/test_framework.log
2025-04-05T15:20:08.760000Z TestFramework (ERROR): 
2025-04-05T15:20:08.760000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/mining_prioritisetransaction_107' to consolidate all logs
2025-04-05T15:20:08.760000Z TestFramework (ERROR): 
2025-04-05T15:20:08.760000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:08.760000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:08.760000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_1p1c_network.py ======

------- Stdout: -------
2025-04-05T15:19:53.677000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_1p1c_network_49
2025-04-05T15:19:54.795000Z TestFramework (INFO): Fill mempools with large transactions to raise mempool minimum feerates
2025-04-05T15:19:54.879000Z TestFramework (INFO): Fill the mempool until eviction is triggered and the mempoolminfee rises
2025-04-05T15:19:56.156000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_1p1c_network.py", line 151, in run_test
    self.raise_network_minfee()
  File "/work/test/functional/p2p_1p1c_network.py", line 34, in raise_network_minfee
    fill_mempool(self, self.nodes[0], filler_wallet)
  File "/work/test/functional/test_framework/util.py", line 590, in fill_mempool
    tx_to_be_evicted_id = miniwallet.send_self_transfer(
                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:56.207000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:56.411000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_1p1c_network_49
2025-04-05T15:19:56.411000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_1p1c_network_49/test_framework.log
2025-04-05T15:19:56.411000Z TestFramework (ERROR): 
2025-04-05T15:19:56.411000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_1p1c_network_49' to consolidate all logs
2025-04-05T15:19:56.411000Z TestFramework (ERROR): 
2025-04-05T15:19:56.411000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:56.411000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:56.411000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_blocksonly.py ======

------- Stdout: -------
2025-04-05T15:19:56.910000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_blocksonly_56
2025-04-05T15:19:57.505000Z TestFramework (INFO): Tests with node running in -blocksonly mode
2025-04-05T15:19:57.607000Z TestFramework (INFO): Check that txs from P2P are rejected and result in disconnect
2025-04-05T15:19:57.608000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_blocksonly.py", line 23, in run_test
    self.blocksonly_mode_tests()
  File "/work/test/functional/p2p_blocksonly.py", line 31, in blocksonly_mode_tests
    tx, txid, tx_hex = self.check_p2p_tx_violation()
                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/p2p_blocksonly.py", line 154, in check_p2p_tx_violation
    spendtx = self.miniwallet.create_self_transfer()
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:57.659000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:57.860000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_blocksonly_56
2025-04-05T15:19:57.860000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_blocksonly_56/test_framework.log
2025-04-05T15:19:57.860000Z TestFramework (ERROR): 
2025-04-05T15:19:57.860000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_blocksonly_56' to consolidate all logs
2025-04-05T15:19:57.860000Z TestFramework (ERROR): 
2025-04-05T15:19:57.860000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:57.860000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:57.860000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_feefilter.py ======

------- Stdout: -------
2025-04-05T15:20:08.071000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_feefilter_108
2025-04-05T15:20:08.664000Z TestFramework (INFO): Check that peers without forcerelay permission (default) get a feefilter message
2025-04-05T15:20:08.765000Z TestFramework (INFO): Check that peers with forcerelay permission do not get a feefilter message
2025-04-05T15:20:09.819000Z TestFramework (INFO): Test txs paying 0.2 sat/byte are received by test connection
2025-04-05T15:20:09.820000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_feefilter.py", line 63, in run_test
    self.test_feefilter()
  File "/work/test/functional/p2p_feefilter.py", line 95, in test_feefilter
    txids = [
            ^
  File "/work/test/functional/p2p_feefilter.py", line 96, in <listcomp>
    miniwallet.send_self_transfer(fee_rate=Decimal("2.00"), from_node=node1)[
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:09.871000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:10.123000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_feefilter_108
2025-04-05T15:20:10.123000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_feefilter_108/test_framework.log
2025-04-05T15:20:10.123000Z TestFramework (ERROR): 
2025-04-05T15:20:10.123000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_feefilter_108' to consolidate all logs
2025-04-05T15:20:10.123000Z TestFramework (ERROR): 
2025-04-05T15:20:10.123000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:10.123000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:10.123000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_filter.py ======

------- Stdout: -------
2025-04-05T15:20:08.265000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_filter_109
2025-04-05T15:20:08.930000Z TestFramework (INFO): Test filter size limits
2025-04-05T15:20:08.930000Z TestFramework (INFO): Check that too large filter is rejected
2025-04-05T15:20:08.982000Z TestFramework (INFO): Check that max size filter is accepted
2025-04-05T15:20:09.083000Z TestFramework (INFO): Check that filter with too many hash functions is rejected
2025-04-05T15:20:09.134000Z TestFramework (INFO): Check that filter with max hash functions is accepted
2025-04-05T15:20:09.185000Z TestFramework (INFO): Check that max size data element to add to the filter is accepted
2025-04-05T15:20:09.236000Z TestFramework (INFO): Check that too large data element to add to the filter is rejected
2025-04-05T15:20:09.336000Z TestFramework (INFO): Test BIP 37 for a node with fRelay = True (default)
2025-04-05T15:20:09.387000Z TestFramework (INFO): Check that we receive merkleblock and tx if the filter matches a tx in a block
2025-04-05T15:20:09.391000Z TestFramework (INFO): Check that we only receive a merkleblock if the filter does not match a tx in a block
2025-04-05T15:20:09.398000Z TestFramework (INFO): Check that we not receive a tx if the filter does not match a mempool tx
2025-04-05T15:20:09.402000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_filter.py", line 286, in run_test
    self.test_filter(filter_peer)
  File "/work/test/functional/p2p_filter.py", line 222, in test_filter
    self.wallet.send_to(
  File "/work/test/functional/test_framework/wallet.py", line 283, in send_to
    tx = self.create_self_transfer(fee_rate=0)["tx"]
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:09.454000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:09.605000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_filter_109
2025-04-05T15:20:09.605000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_filter_109/test_framework.log
2025-04-05T15:20:09.605000Z TestFramework (ERROR): 
2025-04-05T15:20:09.605000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_filter_109' to consolidate all logs
2025-04-05T15:20:09.605000Z TestFramework (ERROR): 
2025-04-05T15:20:09.605000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:09.605000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:09.605000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_leak_tx.py ======

------- Stdout: -------
2025-04-05T15:20:24.717000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_leak_tx_257
2025-04-05T15:20:25.431000Z TestFramework (INFO): Running test up to 100 times.
2025-04-05T15:20:25.431000Z TestFramework (INFO): Run repeat 1
2025-04-05T15:20:25.434000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_leak_tx.py", line 34, in run_test
    txid = miniwallet.send_self_transfer(from_node=gen_node)["txid"]
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:25.488000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:25.690000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_leak_tx_257
2025-04-05T15:20:25.690000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_leak_tx_257/test_framework.log
2025-04-05T15:20:25.690000Z TestFramework (ERROR): 
2025-04-05T15:20:25.690000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_leak_tx_257' to consolidate all logs
2025-04-05T15:20:25.690000Z TestFramework (ERROR): 
2025-04-05T15:20:25.690000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:25.690000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:25.690000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_net_deadlock.py ======

------- Stdout: -------
2025-04-05T15:20:05.000000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_net_deadlock_78
2025-04-05T15:20:06.676000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_net_deadlock.py", line 34, in run_test
    txs = [wallet.create_self_transfer()["tx"] for _ in range(4)]
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/p2p_net_deadlock.py", line 34, in <listcomp>
    txs = [wallet.create_self_transfer()["tx"] for _ in range(4)]
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:06.727000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:06.979000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_net_deadlock_78
2025-04-05T15:20:06.979000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_net_deadlock_78/test_framework.log
2025-04-05T15:20:06.979000Z TestFramework (ERROR): 
2025-04-05T15:20:06.979000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_net_deadlock_78' to consolidate all logs
2025-04-05T15:20:06.979000Z TestFramework (ERROR): 
2025-04-05T15:20:06.979000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:06.979000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:06.979000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_opportunistic_1p1c.py ======

------- Stdout: -------
2025-04-05T15:19:12.077000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_opportunistic_1p1c_0
2025-04-05T15:19:12.888000Z TestFramework (INFO): Fill the mempool until eviction is triggered and the mempoolminfee rises
2025-04-05T15:19:13.082000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_opportunistic_1p1c.py", line 462, in run_test
    fill_mempool(self, node, filler_wallet)
  File "/work/test/functional/test_framework/util.py", line 590, in fill_mempool
    tx_to_be_evicted_id = miniwallet.send_self_transfer(
                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:13.134000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:13.285000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_opportunistic_1p1c_0
2025-04-05T15:19:13.285000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_opportunistic_1p1c_0/test_framework.log
2025-04-05T15:19:13.285000Z TestFramework (ERROR): 
2025-04-05T15:19:13.285000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_opportunistic_1p1c_0' to consolidate all logs
2025-04-05T15:19:13.285000Z TestFramework (ERROR): 
2025-04-05T15:19:13.285000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:13.285000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:13.285000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_orphan_handling.py ======

------- Stdout: -------
2025-04-05T15:20:08.822000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_orphan_handling_110
2025-04-05T15:20:09.633000Z TestFramework (INFO): Test missing parents that arrive during delay are not requested
2025-04-05T15:20:09.638000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_orphan_handling.py", line 393, in run_test
    self.test_arrival_timing_orphan()
  File "/work/test/functional/p2p_orphan_handling.py", line 44, in wrapper
    func(self)
  File "/work/test/functional/p2p_orphan_handling.py", line 134, in test_arrival_timing_orphan
    tx_parent_arrives = self.wallet.create_self_transfer()
                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:09.690000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:09.841000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_orphan_handling_110
2025-04-05T15:20:09.841000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_orphan_handling_110/test_framework.log
2025-04-05T15:20:09.841000Z TestFramework (ERROR): 
2025-04-05T15:20:09.841000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_orphan_handling_110' to consolidate all logs
2025-04-05T15:20:09.841000Z TestFramework (ERROR): 
2025-04-05T15:20:09.841000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:09.841000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:09.841000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_tx_privacy.py ======

------- Stdout: -------
2025-04-05T15:20:05.502000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_tx_privacy_79
2025-04-05T15:20:06.260000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_tx_privacy.py", line 58, in run_test
    tx1 = self.wallet.create_self_transfer()["tx"]
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:06.311000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:06.562000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_tx_privacy_79
2025-04-05T15:20:06.562000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_tx_privacy_79/test_framework.log
2025-04-05T15:20:06.562000Z TestFramework (ERROR): 
2025-04-05T15:20:06.562000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/p2p_tx_privacy_79' to consolidate all logs
2025-04-05T15:20:06.562000Z TestFramework (ERROR): 
2025-04-05T15:20:06.563000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:06.563000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:06.563000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: rpc_blockchain.py ======

------- Stdout: -------
2025-04-05T15:19:58.969000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/rpc_blockchain_65
2025-04-05T15:19:59.478000Z TestFramework (INFO): Generate 200 blocks after the genesis block in ten-minute steps
2025-04-05T15:20:00.443000Z TestFramework (INFO): A block tip of more than MAX_FUTURE_BLOCK_TIME in the future raises an error
2025-04-05T15:20:00.808000Z TestFramework (INFO): A block tip of MAX_FUTURE_BLOCK_TIME in the future is fine
2025-04-05T15:20:01.563000Z TestFramework (INFO): Test getblockchaininfo
2025-04-05T15:20:02.721000Z TestFramework (INFO): Test getchaintxstats
2025-04-05T15:20:02.767000Z TestFramework (INFO): Test gettxoutsetinfo works for blockchain with just the genesis block
2025-04-05T15:20:02.843000Z TestFramework (INFO): Test gettxoutsetinfo returns the same result after invalidate/reconsider block
2025-04-05T15:20:02.964000Z TestFramework (INFO): Test gettxoutsetinfo hash_type option
2025-04-05T15:20:03.088000Z TestFramework (INFO): Test getblockheader
2025-04-05T15:20:03.092000Z TestFramework (INFO): Test getdifficulty
2025-04-05T15:20:03.092000Z TestFramework (INFO): Test getnetworkhashps
2025-04-05T15:20:03.093000Z TestFramework (INFO): Test stopping at height
2025-04-05T15:20:06.554000Z TestFramework (INFO): Test waitforblockheight
2025-04-05T15:20:06.797000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/rpc_blockchain.py", line 91, in run_test
    self._test_getblock_txfee()
  File "/work/test/functional/rpc_blockchain.py", line 544, in _test_getblock_txfee
    txid = miniwallet.send_self_transfer(fee_rate=fee_per_kb, from_node=node)[
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:06.848000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:07.001000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/rpc_blockchain_65
2025-04-05T15:20:07.001000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/rpc_blockchain_65/test_framework.log
2025-04-05T15:20:07.001000Z TestFramework (ERROR): 
2025-04-05T15:20:07.001000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/rpc_blockchain_65' to consolidate all logs
2025-04-05T15:20:07.001000Z TestFramework (ERROR): 
2025-04-05T15:20:07.001000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:07.001000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:07.001000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: rpc_gettransactionstatus.py ======

------- Stdout: -------
2025-04-05T15:20:25.857000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/rpc_gettransactionstatus_270
2025-04-05T15:20:26.592000Z TestFramework (INFO): Tx doesn't exist in any memory pool
2025-04-05T15:20:26.592000Z TestFramework (INFO): Tx is in the memory pool
2025-04-05T15:20:26.593000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/rpc_gettransactionstatus.py", line 35, in run_test
    mempool_tx = wallet.create_self_transfer(utxo_to_spend=utxo)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:26.644000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:26.795000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/rpc_gettransactionstatus_270
2025-04-05T15:20:26.795000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/rpc_gettransactionstatus_270/test_framework.log
2025-04-05T15:20:26.795000Z TestFramework (ERROR): 
2025-04-05T15:20:26.795000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/rpc_gettransactionstatus_270' to consolidate all logs
2025-04-05T15:20:26.795000Z TestFramework (ERROR): 
2025-04-05T15:20:26.795000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:26.795000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:26.795000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: rpc_packages.py ======

------- Stdout: -------
2025-04-05T15:20:14.531000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/rpc_packages_145
2025-04-05T15:20:15.278000Z TestFramework (INFO): Create some transactions
2025-04-05T15:20:15.278000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/rpc_packages.py", line 63, in run_test
    tx_hex = self.wallet.create_self_transfer(fee_rate=Decimal("100"))["hex"]
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:15.330000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:15.581000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/rpc_packages_145
2025-04-05T15:20:15.581000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/rpc_packages_145/test_framework.log
2025-04-05T15:20:15.581000Z TestFramework (ERROR): 
2025-04-05T15:20:15.581000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/rpc_packages_145' to consolidate all logs
2025-04-05T15:20:15.581000Z TestFramework (ERROR): 
2025-04-05T15:20:15.581000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:15.582000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:15.582000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: rpc_scantxoutset.py ======

------- Stdout: -------
2025-04-05T15:20:14.761000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/rpc_scantxoutset_146
2025-04-05T15:20:15.345000Z TestFramework (INFO): Test if we find coinbase outputs.
2025-04-05T15:20:15.368000Z TestFramework (INFO): Create UTXOs...
2025-04-05T15:20:15.373000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/rpc_scantxoutset.py", line 45, in run_test
    self.sendtodestination(spk, 2000)
  File "/work/test/functional/rpc_scantxoutset.py", line 25, in sendtodestination
    self.wallet.send_to(
  File "/work/test/functional/test_framework/wallet.py", line 283, in send_to
    tx = self.create_self_transfer(fee_rate=0)["tx"]
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:15.424000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:15.625000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/rpc_scantxoutset_146
2025-04-05T15:20:15.625000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/rpc_scantxoutset_146/test_framework.log
2025-04-05T15:20:15.625000Z TestFramework (ERROR): 
2025-04-05T15:20:15.625000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/rpc_scantxoutset_146' to consolidate all logs
2025-04-05T15:20:15.625000Z TestFramework (ERROR): 
2025-04-05T15:20:15.625000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:15.625000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:15.625000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: rpc_txoutproof.py ======

------- Stdout: -------
2025-04-05T15:20:21.437000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/rpc_txoutproof_206
2025-04-05T15:20:22.096000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/rpc_txoutproof.py", line 26, in run_test
    txid1 = miniwallet.send_self_transfer(from_node=self.nodes[0])["txid"]
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:22.148000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:22.349000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/rpc_txoutproof_206
2025-04-05T15:20:22.349000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/rpc_txoutproof_206/test_framework.log
2025-04-05T15:20:22.349000Z TestFramework (ERROR): 
2025-04-05T15:20:22.350000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-without-wallet/test/tmp/test_runner_₿₵_🏃_20250405_151910/rpc_txoutproof_206' to consolidate all logs
2025-04-05T15:20:22.350000Z TestFramework (ERROR): 
2025-04-05T15:20:22.350000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:22.350000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:22.350000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: abc_mempool_chainedtx.py
Bitcoin ABC functional tests: abc_mining_rtt.py
Bitcoin ABC functional tests: abc_p2p_avalanche_cooldown.py
Bitcoin ABC functional tests: abc_p2p_avalanche_transaction_finalization.py
Bitcoin ABC functional tests: abc_p2p_avalanche_transaction_voting.py
Bitcoin ABC functional tests: feature_bip68_sequence.py
Bitcoin ABC functional tests: feature_cltv.py
Bitcoin ABC functional tests: feature_coinstatsindex.py
Bitcoin ABC functional tests: feature_csv_activation.py
Bitcoin ABC functional tests: feature_dersig.py
Bitcoin ABC functional tests: feature_fastprune.py
Bitcoin ABC functional tests: mempool_expiry.py
Bitcoin ABC functional tests: mempool_limit.py
Bitcoin ABC functional tests: mempool_packages.py
Bitcoin ABC functional tests: mempool_reorg.py
Bitcoin ABC functional tests: mempool_resurrect.py
Bitcoin ABC functional tests: mempool_spend_coinbase.py
Bitcoin ABC functional tests: mining_getblocktemplate_longpoll.py
Bitcoin ABC functional tests: mining_prioritisetransaction.py
Bitcoin ABC functional tests: p2p_1p1c_network.py
Bitcoin ABC functional tests: p2p_blocksonly.py
Bitcoin ABC functional tests: p2p_feefilter.py
Bitcoin ABC functional tests: p2p_filter.py
Bitcoin ABC functional tests: p2p_leak_tx.py
Bitcoin ABC functional tests: p2p_net_deadlock.py
Bitcoin ABC functional tests: p2p_opportunistic_1p1c.py
Bitcoin ABC functional tests: p2p_orphan_handling.py
Bitcoin ABC functional tests: p2p_tx_privacy.py
Bitcoin ABC functional tests: rpc_blockchain.py
Bitcoin ABC functional tests: rpc_gettransactionstatus.py
Bitcoin ABC functional tests: rpc_packages.py
Bitcoin ABC functional tests: rpc_scantxoutset.py
Bitcoin ABC functional tests: rpc_txoutproof.py

fix rebase accident (deterministic arg to pad_tx comes later)

Failed tests logs:

====== Bitcoin ABC functional tests: abc_mempool_chainedtx.py ======

------- Stdout: -------
2025-04-05T15:22:21.091000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/abc_mempool_chainedtx_216
2025-04-05T15:22:22.470000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/abc_mempool_chainedtx.py", line 27, in run_test
    for t in wallet.create_self_transfer_chain(
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 432, in create_self_transfer_chain
    tx = self.create_self_transfer(utxo_to_spend=chaintip_utxo)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:22:22.520000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:22:22.722000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/abc_mempool_chainedtx_216
2025-04-05T15:22:22.722000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/abc_mempool_chainedtx_216/test_framework.log
2025-04-05T15:22:22.722000Z TestFramework (ERROR): 
2025-04-05T15:22:22.722000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/abc_mempool_chainedtx_216' to consolidate all logs
2025-04-05T15:22:22.722000Z TestFramework (ERROR): 
2025-04-05T15:22:22.722000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:22:22.722000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:22:22.722000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: abc_mining_rtt.py ======

------- Stdout: -------
2025-04-05T15:19:22.418000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/abc_mining_rtt_35
2025-04-05T15:19:24.053000Z TestFramework (INFO): Check the block template is updated with the relevant RTT info
2025-04-05T15:19:24.424000Z TestFramework (INFO): Check the node tries to mine blocks with the real time difficulty
2025-04-05T15:19:39.894000Z TestFramework (INFO): Check the RTT is updated when longpoll returns
2025-04-05T15:19:40.025000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/abc_mining_rtt.py", line 180, in run_test
    mempool_tx = wallet.send_self_transfer(from_node=node)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:40.076000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:40.279000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/abc_mining_rtt_35
2025-04-05T15:19:40.279000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/abc_mining_rtt_35/test_framework.log
2025-04-05T15:19:40.279000Z TestFramework (ERROR): 
2025-04-05T15:19:40.279000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/abc_mining_rtt_35' to consolidate all logs
2025-04-05T15:19:40.279000Z TestFramework (ERROR): 
2025-04-05T15:19:40.279000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:40.279000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:40.279000Z TestFramework (ERROR):
------- Stderr: -------
Exception in thread Thread-1:
Traceback (most recent call last):
  File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
    self.run()
  File "/work/test/functional/abc_mining_rtt.py", line 38, in run
    self.longpoll_template = self.node.getblocktemplate(
                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/coverage.py", line 46, in __call__
    return_val = self.auth_service_proxy_instance.__call__(*args, **kwargs)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/authproxy.py", line 150, in __call__
    raise JSONRPCException(response["error"], status)
test_framework.authproxy.JSONRPCException: Shutting down (-9)
====== Bitcoin ABC functional tests: abc_p2p_avalanche_cooldown.py ======

------- Stdout: -------
2025-04-05T15:20:25.281000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/abc_p2p_avalanche_cooldown_54
2025-04-05T15:20:29.890000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/abc_p2p_avalanche_cooldown.py", line 65, in run_test
    txid = int(wallet.send_self_transfer(from_node=node)["txid"], 16)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:29.941000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:30.193000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/abc_p2p_avalanche_cooldown_54
2025-04-05T15:20:30.193000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/abc_p2p_avalanche_cooldown_54/test_framework.log
2025-04-05T15:20:30.193000Z TestFramework (ERROR): 
2025-04-05T15:20:30.193000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/abc_p2p_avalanche_cooldown_54' to consolidate all logs
2025-04-05T15:20:30.193000Z TestFramework (ERROR): 
2025-04-05T15:20:30.193000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:30.194000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:30.194000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: abc_p2p_avalanche_transaction_finalization.py ======

------- Stdout: -------
2025-04-05T15:18:00.529000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/abc_p2p_avalanche_transaction_finalization_4
2025-04-05T15:18:15.256000Z TestFramework (INFO): Check the finalization of simple non-chained txs
2025-04-05T15:18:22.446000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/abc_p2p_avalanche_transaction_finalization.py", line 226, in run_test
    self.test_simple_txs()
  File "/work/test/functional/abc_p2p_avalanche_transaction_finalization.py", line 111, in test_simple_txs
    txids = [
            ^
  File "/work/test/functional/abc_p2p_avalanche_transaction_finalization.py", line 112, in <listcomp>
    int(self.wallet.send_self_transfer(from_node=node)["txid"], 16)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:18:22.452000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:18:22.654000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/abc_p2p_avalanche_transaction_finalization_4
2025-04-05T15:18:22.654000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/abc_p2p_avalanche_transaction_finalization_4/test_framework.log
2025-04-05T15:18:22.654000Z TestFramework (ERROR): 
2025-04-05T15:18:22.654000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/abc_p2p_avalanche_transaction_finalization_4' to consolidate all logs
2025-04-05T15:18:22.654000Z TestFramework (ERROR): 
2025-04-05T15:18:22.654000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:18:22.654000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:18:22.654000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: abc_p2p_avalanche_transaction_voting.py ======

------- Stdout: -------
2025-04-05T15:18:00.413000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/abc_p2p_avalanche_transaction_voting_3
2025-04-05T15:18:03.363000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/abc_p2p_avalanche_transaction_voting.py", line 84, in run_test
    tx_ids = [
             ^
  File "/work/test/functional/abc_p2p_avalanche_transaction_voting.py", line 85, in <listcomp>
    int(wallet.send_self_transfer(from_node=node)["txid"], 16)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:18:03.414000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:18:03.567000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/abc_p2p_avalanche_transaction_voting_3
2025-04-05T15:18:03.567000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/abc_p2p_avalanche_transaction_voting_3/test_framework.log
2025-04-05T15:18:03.567000Z TestFramework (ERROR): 
2025-04-05T15:18:03.567000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/abc_p2p_avalanche_transaction_voting_3' to consolidate all logs
2025-04-05T15:18:03.567000Z TestFramework (ERROR): 
2025-04-05T15:18:03.567000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:18:03.567000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:18:03.567000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: feature_bip68_sequence.py ======

------- Stdout: -------
2025-04-05T15:19:26.065000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_bip68_sequence_36
2025-04-05T15:19:28.488000Z TestFramework (INFO): Running test disable flag
2025-04-05T15:19:28.489000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_bip68_sequence.py", line 51, in run_test
    self.test_disable_flag()
  File "/work/test/functional/feature_bip68_sequence.py", line 78, in test_disable_flag
    utxo = self.wallet.send_self_transfer(from_node=self.nodes[0])["new_utxo"]
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:28.540000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:28.793000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_bip68_sequence_36
2025-04-05T15:19:28.793000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_bip68_sequence_36/test_framework.log
2025-04-05T15:19:28.793000Z TestFramework (ERROR): 
2025-04-05T15:19:28.793000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_bip68_sequence_36' to consolidate all logs
2025-04-05T15:19:28.793000Z TestFramework (ERROR): 
2025-04-05T15:19:28.794000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:28.794000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:28.794000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: feature_cltv.py ======

------- Stdout: -------
2025-04-05T15:21:29.566000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_cltv_104
2025-04-05T15:21:30.633000Z TestFramework (INFO): Mining 1349 blocks
2025-04-05T15:21:46.049000Z TestFramework (INFO): Test that an invalid-according-to-CLTV transaction can still appear in a block
2025-04-05T15:21:46.050000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_cltv.py", line 94, in run_test
    fundtx = wallet.create_self_transfer()["tx"]
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:46.101000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:46.353000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_cltv_104
2025-04-05T15:21:46.353000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_cltv_104/test_framework.log
2025-04-05T15:21:46.353000Z TestFramework (ERROR): 
2025-04-05T15:21:46.353000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_cltv_104' to consolidate all logs
2025-04-05T15:21:46.353000Z TestFramework (ERROR): 
2025-04-05T15:21:46.353000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:46.353000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:46.353000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: feature_coinstatsindex.py ======

------- Stdout: -------
2025-04-05T15:20:36.156000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_coinstatsindex_61
2025-04-05T15:20:58.038000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_coinstatsindex.py", line 37, in run_test
    self._test_coin_stats_index()
  File "/work/test/functional/feature_coinstatsindex.py", line 65, in _test_coin_stats_index
    self.wallet.send_self_transfer(from_node=node)
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:58.090000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:58.342000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_coinstatsindex_61
2025-04-05T15:20:58.342000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_coinstatsindex_61/test_framework.log
2025-04-05T15:20:58.342000Z TestFramework (ERROR): 
2025-04-05T15:20:58.342000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_coinstatsindex_61' to consolidate all logs
2025-04-05T15:20:58.342000Z TestFramework (ERROR): 
2025-04-05T15:20:58.342000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:58.342000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:58.342000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: feature_csv_activation.py ======

------- Stdout: -------
2025-04-05T15:18:43.280000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_csv_activation_25
2025-04-05T15:18:44.397000Z TestFramework (INFO): Generate blocks in the past for coinbase outputs.
2025-04-05T15:19:00.223000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_csv_activation.py", line 244, in run_test
    bip68inputs.append(self.send_generic_input_tx(self.coinbase_blocks))
                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/feature_csv_activation.py", line 122, in send_generic_input_tx
    return self.miniwallet.send_self_transfer(
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:00.274000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:00.576000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_csv_activation_25
2025-04-05T15:19:00.576000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_csv_activation_25/test_framework.log
2025-04-05T15:19:00.576000Z TestFramework (ERROR): 
2025-04-05T15:19:00.577000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_csv_activation_25' to consolidate all logs
2025-04-05T15:19:00.577000Z TestFramework (ERROR): 
2025-04-05T15:19:00.577000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:00.577000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:00.577000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: feature_dersig.py ======

------- Stdout: -------
2025-04-05T15:21:29.656000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_dersig_105
2025-04-05T15:21:30.818000Z TestFramework (INFO): Mining 1250 blocks
2025-04-05T15:21:45.142000Z TestFramework (INFO): Test that blocks must now be at least version 3
2025-04-05T15:21:45.246000Z TestFramework (INFO): Test that transactions with non-DER signatures cannot appear in a block
2025-04-05T15:21:45.254000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_dersig.py", line 79, in run_test
    spendtx = self.create_tx(self.coinbase_txids[1])
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/feature_dersig.py", line 47, in create_tx
    return self.miniwallet.create_self_transfer(utxo_to_spend=utxo_to_spend)["tx"]
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:45.306000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:45.557000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_dersig_105
2025-04-05T15:21:45.557000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_dersig_105/test_framework.log
2025-04-05T15:21:45.557000Z TestFramework (ERROR): 
2025-04-05T15:21:45.557000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_dersig_105' to consolidate all logs
2025-04-05T15:21:45.557000Z TestFramework (ERROR): 
2025-04-05T15:21:45.557000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:45.557000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:45.557000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: feature_fastprune.py ======

------- Stdout: -------
2025-04-05T15:22:25.785000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_fastprune_242
2025-04-05T15:22:26.841000Z TestFramework (INFO): ensure that large blocks don't crash or freeze in -fastprune
2025-04-05T15:22:26.917000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_fastprune.py", line 19, in run_test
    tx = wallet.create_self_transfer()["tx"]
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:22:26.968000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:22:27.220000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_fastprune_242
2025-04-05T15:22:27.220000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_fastprune_242/test_framework.log
2025-04-05T15:22:27.220000Z TestFramework (ERROR): 
2025-04-05T15:22:27.221000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/feature_fastprune_242' to consolidate all logs
2025-04-05T15:22:27.221000Z TestFramework (ERROR): 
2025-04-05T15:22:27.221000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:22:27.221000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:22:27.221000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mempool_expiry.py ======

------- Stdout: -------
2025-04-05T15:22:10.334000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_expiry_188
2025-04-05T15:22:12.383000Z TestFramework (INFO): Test default mempool expiry timeout of 336 hours.
2025-04-05T15:22:12.384000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_expiry.py", line 120, in run_test
    self.test_transaction_expiry(DEFAULT_MEMPOOL_EXPIRY_HOURS)
  File "/work/test/functional/mempool_expiry.py", line 33, in test_transaction_expiry
    parent_txid = self.wallet.send_self_transfer(from_node=node)["txid"]
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:22:12.436000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:22:12.688000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_expiry_188
2025-04-05T15:22:12.688000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_expiry_188/test_framework.log
2025-04-05T15:22:12.688000Z TestFramework (ERROR): 
2025-04-05T15:22:12.688000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_expiry_188' to consolidate all logs
2025-04-05T15:22:12.688000Z TestFramework (ERROR): 
2025-04-05T15:22:12.688000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:22:12.688000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:22:12.688000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mempool_limit.py ======

------- Stdout: -------
2025-04-05T15:20:09.821000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_limit_48
2025-04-05T15:20:11.299000Z TestFramework (INFO): Check that mempoolminfee is minrelaytxfee
2025-04-05T15:20:11.300000Z TestFramework (INFO): Fill the mempool until eviction is triggered and the mempoolminfee rises
2025-04-05T15:20:12.835000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_limit.py", line 165, in run_test
    fill_mempool(self, node, self.wallet)
  File "/work/test/functional/test_framework/util.py", line 590, in fill_mempool
    tx_to_be_evicted_id = miniwallet.send_self_transfer(
                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:12.886000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:13.093000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_limit_48
2025-04-05T15:20:13.093000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_limit_48/test_framework.log
2025-04-05T15:20:13.093000Z TestFramework (ERROR): 
2025-04-05T15:20:13.093000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_limit_48' to consolidate all logs
2025-04-05T15:20:13.093000Z TestFramework (ERROR): 
2025-04-05T15:20:13.093000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:13.093000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:13.093000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mempool_packages.py ======

------- Stdout: -------
2025-04-05T15:22:11.225000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_packages_189
2025-04-05T15:22:12.831000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_packages.py", line 27, in run_test
    chain = self.wallet.send_self_transfer_chain(
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 445, in send_self_transfer_chain
    chain = self.create_self_transfer_chain(**kwargs)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 432, in create_self_transfer_chain
    tx = self.create_self_transfer(utxo_to_spend=chaintip_utxo)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:22:12.882000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:22:13.185000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_packages_189
2025-04-05T15:22:13.185000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_packages_189/test_framework.log
2025-04-05T15:22:13.185000Z TestFramework (ERROR): 
2025-04-05T15:22:13.185000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_packages_189' to consolidate all logs
2025-04-05T15:22:13.185000Z TestFramework (ERROR): 
2025-04-05T15:22:13.185000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:22:13.185000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:22:13.185000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mempool_reorg.py ======

------- Stdout: -------
2025-04-05T15:22:11.676000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_reorg_190
2025-04-05T15:22:13.112000Z TestFramework (INFO): Add 4 coinbase utxos to the miniwallet
2025-04-05T15:22:13.121000Z TestFramework (INFO): Create three transactions spending from coinbase utxos: spend_1, spend_2, spend_3
2025-04-05T15:22:13.121000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_reorg.py", line 46, in run_test
    spend_1 = wallet.create_self_transfer(utxo_to_spend=utxo_1)
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:22:13.172000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:22:13.424000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_reorg_190
2025-04-05T15:22:13.425000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_reorg_190/test_framework.log
2025-04-05T15:22:13.425000Z TestFramework (ERROR): 
2025-04-05T15:22:13.425000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_reorg_190' to consolidate all logs
2025-04-05T15:22:13.425000Z TestFramework (ERROR): 
2025-04-05T15:22:13.425000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:22:13.425000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:22:13.425000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mempool_resurrect.py ======

------- Stdout: -------
2025-04-05T15:22:27.481000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_resurrect_250
2025-04-05T15:22:28.608000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_resurrect.py", line 29, in run_test
    spends1_ids = [
                  ^
  File "/work/test/functional/mempool_resurrect.py", line 30, in <listcomp>
    wallet.send_self_transfer(from_node=node)["txid"] for _ in range(3)
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:22:28.659000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:22:28.910000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_resurrect_250
2025-04-05T15:22:28.910000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_resurrect_250/test_framework.log
2025-04-05T15:22:28.910000Z TestFramework (ERROR): 
2025-04-05T15:22:28.910000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_resurrect_250' to consolidate all logs
2025-04-05T15:22:28.911000Z TestFramework (ERROR): 
2025-04-05T15:22:28.911000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:22:28.911000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:22:28.911000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mempool_spend_coinbase.py ======

------- Stdout: -------
2025-04-05T15:22:27.924000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_spend_coinbase_251
2025-04-05T15:22:29.056000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_spend_coinbase.py", line 41, in run_test
    spend_mature_id = wallet.send_self_transfer(
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:22:29.107000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:22:29.258000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_spend_coinbase_251
2025-04-05T15:22:29.258000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_spend_coinbase_251/test_framework.log
2025-04-05T15:22:29.258000Z TestFramework (ERROR): 
2025-04-05T15:22:29.258000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mempool_spend_coinbase_251' to consolidate all logs
2025-04-05T15:22:29.258000Z TestFramework (ERROR): 
2025-04-05T15:22:29.259000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:22:29.259000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:22:29.259000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mining_getblocktemplate_longpoll.py ======

------- Stdout: -------
2025-04-05T15:18:03.769000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mining_getblocktemplate_longpoll_15
2025-04-05T15:18:05.051000Z TestFramework (INFO): Test that longpollid doesn't change between successive getblocktemplate() invocations if nothing else happens
2025-04-05T15:18:06.205000Z TestFramework (INFO): Test that longpoll waits if we do nothing
2025-04-05T15:18:11.329000Z TestFramework (INFO): Test that longpoll will terminate if another node generates a block
2025-04-05T15:18:11.401000Z TestFramework (INFO): Test that longpoll will terminate if we generate a block ourselves
2025-04-05T15:18:11.458000Z TestFramework (INFO): Test that introducing a new transaction into the mempool will terminate the longpoll
2025-04-05T15:18:11.469000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mining_getblocktemplate_longpoll.py", line 106, in run_test
    miniwallets[0].send_self_transfer(
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:18:11.521000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:18:11.823000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mining_getblocktemplate_longpoll_15
2025-04-05T15:18:11.823000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mining_getblocktemplate_longpoll_15/test_framework.log
2025-04-05T15:18:11.823000Z TestFramework (ERROR): 
2025-04-05T15:18:11.824000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mining_getblocktemplate_longpoll_15' to consolidate all logs
2025-04-05T15:18:11.824000Z TestFramework (ERROR): 
2025-04-05T15:18:11.824000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:18:11.824000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:18:11.824000Z TestFramework (ERROR):
------- Stderr: -------
Exception in thread Thread-3:
Traceback (most recent call last):
  File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
    self.run()
  File "/work/test/functional/mining_getblocktemplate_longpoll.py", line 35, in run
    self.node.getblocktemplate({"longpollid": self.longpollid})
  File "/work/test/functional/test_framework/coverage.py", line 46, in __call__
    return_val = self.auth_service_proxy_instance.__call__(*args, **kwargs)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/authproxy.py", line 150, in __call__
    raise JSONRPCException(response["error"], status)
test_framework.authproxy.JSONRPCException: Shutting down (-9)
====== Bitcoin ABC functional tests: mining_prioritisetransaction.py ======

------- Stdout: -------
2025-04-05T15:21:30.776000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mining_prioritisetransaction_107
2025-04-05T15:21:31.808000Z TestFramework (INFO): Test diamond-shape package with priority
2025-04-05T15:21:31.809000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mining_prioritisetransaction.py", line 222, in run_test
    self.test_diamond()
  File "/work/test/functional/mining_prioritisetransaction.py", line 44, in test_diamond
    tx_o_a = self.wallet.send_self_transfer_multi(
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 294, in send_self_transfer_multi
    tx = self.create_self_transfer_multi(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:31.861000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:32.012000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mining_prioritisetransaction_107
2025-04-05T15:21:32.012000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mining_prioritisetransaction_107/test_framework.log
2025-04-05T15:21:32.012000Z TestFramework (ERROR): 
2025-04-05T15:21:32.012000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/mining_prioritisetransaction_107' to consolidate all logs
2025-04-05T15:21:32.012000Z TestFramework (ERROR): 
2025-04-05T15:21:32.012000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:32.012000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:32.012000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_1p1c_network.py ======

------- Stdout: -------
2025-04-05T15:20:12.425000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_1p1c_network_49
2025-04-05T15:20:18.402000Z TestFramework (INFO): Fill mempools with large transactions to raise mempool minimum feerates
2025-04-05T15:20:18.495000Z TestFramework (INFO): Fill the mempool until eviction is triggered and the mempoolminfee rises
2025-04-05T15:20:22.764000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_1p1c_network.py", line 151, in run_test
    self.raise_network_minfee()
  File "/work/test/functional/p2p_1p1c_network.py", line 34, in raise_network_minfee
    fill_mempool(self, self.nodes[0], filler_wallet)
  File "/work/test/functional/test_framework/util.py", line 590, in fill_mempool
    tx_to_be_evicted_id = miniwallet.send_self_transfer(
                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:22.815000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:23.125000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_1p1c_network_49
2025-04-05T15:20:23.125000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_1p1c_network_49/test_framework.log
2025-04-05T15:20:23.125000Z TestFramework (ERROR): 
2025-04-05T15:20:23.125000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_1p1c_network_49' to consolidate all logs
2025-04-05T15:20:23.125000Z TestFramework (ERROR): 
2025-04-05T15:20:23.125000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:23.125000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:23.125000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_blocksonly.py ======

------- Stdout: -------
2025-04-05T15:20:29.265000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_blocksonly_56
2025-04-05T15:20:30.416000Z TestFramework (INFO): Tests with node running in -blocksonly mode
2025-04-05T15:20:30.519000Z TestFramework (INFO): Check that txs from P2P are rejected and result in disconnect
2025-04-05T15:20:30.520000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_blocksonly.py", line 23, in run_test
    self.blocksonly_mode_tests()
  File "/work/test/functional/p2p_blocksonly.py", line 31, in blocksonly_mode_tests
    tx, txid, tx_hex = self.check_p2p_tx_violation()
                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/p2p_blocksonly.py", line 154, in check_p2p_tx_violation
    spendtx = self.miniwallet.create_self_transfer()
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:30.572000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:30.826000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_blocksonly_56
2025-04-05T15:20:30.826000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_blocksonly_56/test_framework.log
2025-04-05T15:20:30.826000Z TestFramework (ERROR): 
2025-04-05T15:20:30.826000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_blocksonly_56' to consolidate all logs
2025-04-05T15:20:30.826000Z TestFramework (ERROR): 
2025-04-05T15:20:30.826000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:30.826000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:30.826000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_feefilter.py ======

------- Stdout: -------
2025-04-05T15:21:32.136000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_feefilter_108
2025-04-05T15:21:33.354000Z TestFramework (INFO): Check that peers without forcerelay permission (default) get a feefilter message
2025-04-05T15:21:33.456000Z TestFramework (INFO): Check that peers with forcerelay permission do not get a feefilter message
2025-04-05T15:21:35.624000Z TestFramework (INFO): Test txs paying 0.2 sat/byte are received by test connection
2025-04-05T15:21:35.625000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_feefilter.py", line 63, in run_test
    self.test_feefilter()
  File "/work/test/functional/p2p_feefilter.py", line 95, in test_feefilter
    txids = [
            ^
  File "/work/test/functional/p2p_feefilter.py", line 96, in <listcomp>
    miniwallet.send_self_transfer(fee_rate=Decimal("2.00"), from_node=node1)[
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:35.676000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:35.928000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_feefilter_108
2025-04-05T15:21:35.928000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_feefilter_108/test_framework.log
2025-04-05T15:21:35.928000Z TestFramework (ERROR): 
2025-04-05T15:21:35.928000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_feefilter_108' to consolidate all logs
2025-04-05T15:21:35.928000Z TestFramework (ERROR): 
2025-04-05T15:21:35.929000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:35.929000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:35.929000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_filter.py ======

------- Stdout: -------
2025-04-05T15:21:32.315000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_filter_109
2025-04-05T15:21:33.446000Z TestFramework (INFO): Test filter size limits
2025-04-05T15:21:33.446000Z TestFramework (INFO): Check that too large filter is rejected
2025-04-05T15:21:33.497000Z TestFramework (INFO): Check that max size filter is accepted
2025-04-05T15:21:33.598000Z TestFramework (INFO): Check that filter with too many hash functions is rejected
2025-04-05T15:21:33.649000Z TestFramework (INFO): Check that filter with max hash functions is accepted
2025-04-05T15:21:33.700000Z TestFramework (INFO): Check that max size data element to add to the filter is accepted
2025-04-05T15:21:33.750000Z TestFramework (INFO): Check that too large data element to add to the filter is rejected
2025-04-05T15:21:33.851000Z TestFramework (INFO): Test BIP 37 for a node with fRelay = True (default)
2025-04-05T15:21:33.903000Z TestFramework (INFO): Check that we receive merkleblock and tx if the filter matches a tx in a block
2025-04-05T15:21:33.912000Z TestFramework (INFO): Check that we only receive a merkleblock if the filter does not match a tx in a block
2025-04-05T15:21:33.923000Z TestFramework (INFO): Check that we not receive a tx if the filter does not match a mempool tx
2025-04-05T15:21:33.928000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_filter.py", line 286, in run_test
    self.test_filter(filter_peer)
  File "/work/test/functional/p2p_filter.py", line 222, in test_filter
    self.wallet.send_to(
  File "/work/test/functional/test_framework/wallet.py", line 283, in send_to
    tx = self.create_self_transfer(fee_rate=0)["tx"]
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:33.979000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:34.181000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_filter_109
2025-04-05T15:21:34.181000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_filter_109/test_framework.log
2025-04-05T15:21:34.181000Z TestFramework (ERROR): 
2025-04-05T15:21:34.181000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_filter_109' to consolidate all logs
2025-04-05T15:21:34.181000Z TestFramework (ERROR): 
2025-04-05T15:21:34.181000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:34.181000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:34.181000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_leak_tx.py ======

------- Stdout: -------
2025-04-05T15:22:29.365000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_leak_tx_257
2025-04-05T15:22:30.529000Z TestFramework (INFO): Running test up to 100 times.
2025-04-05T15:22:30.529000Z TestFramework (INFO): Run repeat 1
2025-04-05T15:22:30.529000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_leak_tx.py", line 34, in run_test
    txid = miniwallet.send_self_transfer(from_node=gen_node)["txid"]
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:22:30.580000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:22:30.882000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_leak_tx_257
2025-04-05T15:22:30.882000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_leak_tx_257/test_framework.log
2025-04-05T15:22:30.882000Z TestFramework (ERROR): 
2025-04-05T15:22:30.882000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_leak_tx_257' to consolidate all logs
2025-04-05T15:22:30.882000Z TestFramework (ERROR): 
2025-04-05T15:22:30.882000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:22:30.882000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:22:30.882000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_net_deadlock.py ======

------- Stdout: -------
2025-04-05T15:21:05.546000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_net_deadlock_78
2025-04-05T15:21:08.019000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_net_deadlock.py", line 34, in run_test
    txs = [wallet.create_self_transfer()["tx"] for _ in range(4)]
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/p2p_net_deadlock.py", line 34, in <listcomp>
    txs = [wallet.create_self_transfer()["tx"] for _ in range(4)]
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:08.070000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:08.322000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_net_deadlock_78
2025-04-05T15:21:08.322000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_net_deadlock_78/test_framework.log
2025-04-05T15:21:08.322000Z TestFramework (ERROR): 
2025-04-05T15:21:08.322000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_net_deadlock_78' to consolidate all logs
2025-04-05T15:21:08.322000Z TestFramework (ERROR): 
2025-04-05T15:21:08.323000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:08.323000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:08.323000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_opportunistic_1p1c.py ======

------- Stdout: -------
2025-04-05T15:18:00.396000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_opportunistic_1p1c_0
2025-04-05T15:18:02.022000Z TestFramework (INFO): Fill the mempool until eviction is triggered and the mempoolminfee rises
2025-04-05T15:18:03.055000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_opportunistic_1p1c.py", line 462, in run_test
    fill_mempool(self, node, filler_wallet)
  File "/work/test/functional/test_framework/util.py", line 590, in fill_mempool
    tx_to_be_evicted_id = miniwallet.send_self_transfer(
                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:18:03.106000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:18:03.309000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_opportunistic_1p1c_0
2025-04-05T15:18:03.309000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_opportunistic_1p1c_0/test_framework.log
2025-04-05T15:18:03.309000Z TestFramework (ERROR): 
2025-04-05T15:18:03.309000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_opportunistic_1p1c_0' to consolidate all logs
2025-04-05T15:18:03.309000Z TestFramework (ERROR): 
2025-04-05T15:18:03.309000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:18:03.309000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:18:03.309000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_orphan_handling.py ======

------- Stdout: -------
2025-04-05T15:21:34.297000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_orphan_handling_110
2025-04-05T15:21:36.345000Z TestFramework (INFO): Test missing parents that arrive during delay are not requested
2025-04-05T15:21:36.357000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_orphan_handling.py", line 393, in run_test
    self.test_arrival_timing_orphan()
  File "/work/test/functional/p2p_orphan_handling.py", line 44, in wrapper
    func(self)
  File "/work/test/functional/p2p_orphan_handling.py", line 134, in test_arrival_timing_orphan
    tx_parent_arrives = self.wallet.create_self_transfer()
                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:36.408000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:36.610000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_orphan_handling_110
2025-04-05T15:21:36.610000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_orphan_handling_110/test_framework.log
2025-04-05T15:21:36.610000Z TestFramework (ERROR): 
2025-04-05T15:21:36.610000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_orphan_handling_110' to consolidate all logs
2025-04-05T15:21:36.610000Z TestFramework (ERROR): 
2025-04-05T15:21:36.610000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:36.610000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:36.610000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_tx_privacy.py ======

------- Stdout: -------
2025-04-05T15:21:07.356000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_tx_privacy_79
2025-04-05T15:21:08.657000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_tx_privacy.py", line 58, in run_test
    tx1 = self.wallet.create_self_transfer()["tx"]
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:08.710000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:08.961000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_tx_privacy_79
2025-04-05T15:21:08.961000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_tx_privacy_79/test_framework.log
2025-04-05T15:21:08.961000Z TestFramework (ERROR): 
2025-04-05T15:21:08.962000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/p2p_tx_privacy_79' to consolidate all logs
2025-04-05T15:21:08.962000Z TestFramework (ERROR): 
2025-04-05T15:21:08.962000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:08.962000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:08.962000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: rpc_blockchain.py ======

------- Stdout: -------
2025-04-05T15:20:40.397000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/rpc_blockchain_65
2025-04-05T15:20:41.261000Z TestFramework (INFO): Generate 200 blocks after the genesis block in ten-minute steps
2025-04-05T15:20:43.173000Z TestFramework (INFO): A block tip of more than MAX_FUTURE_BLOCK_TIME in the future raises an error
2025-04-05T15:20:43.838000Z TestFramework (INFO): A block tip of MAX_FUTURE_BLOCK_TIME in the future is fine
2025-04-05T15:20:45.806000Z TestFramework (INFO): Test getblockchaininfo
2025-04-05T15:20:47.726000Z TestFramework (INFO): Test getchaintxstats
2025-04-05T15:20:47.786000Z TestFramework (INFO): Test gettxoutsetinfo works for blockchain with just the genesis block
2025-04-05T15:20:47.982000Z TestFramework (INFO): Test gettxoutsetinfo returns the same result after invalidate/reconsider block
2025-04-05T15:20:48.548000Z TestFramework (INFO): Test gettxoutsetinfo hash_type option
2025-04-05T15:20:48.885000Z TestFramework (INFO): Test getblockheader
2025-04-05T15:20:48.893000Z TestFramework (INFO): Test getdifficulty
2025-04-05T15:20:48.894000Z TestFramework (INFO): Test getnetworkhashps
2025-04-05T15:20:48.895000Z TestFramework (INFO): Test stopping at height
2025-04-05T15:20:52.944000Z TestFramework (INFO): Test waitforblockheight
2025-04-05T15:20:53.214000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/rpc_blockchain.py", line 91, in run_test
    self._test_getblock_txfee()
  File "/work/test/functional/rpc_blockchain.py", line 544, in _test_getblock_txfee
    txid = miniwallet.send_self_transfer(fee_rate=fee_per_kb, from_node=node)[
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:53.215000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:53.467000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/rpc_blockchain_65
2025-04-05T15:20:53.467000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/rpc_blockchain_65/test_framework.log
2025-04-05T15:20:53.467000Z TestFramework (ERROR): 
2025-04-05T15:20:53.467000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/rpc_blockchain_65' to consolidate all logs
2025-04-05T15:20:53.467000Z TestFramework (ERROR): 
2025-04-05T15:20:53.467000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:53.467000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:53.467000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: rpc_gettransactionstatus.py ======

------- Stdout: -------
2025-04-05T15:22:31.228000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/rpc_gettransactionstatus_270
2025-04-05T15:22:32.529000Z TestFramework (INFO): Tx doesn't exist in any memory pool
2025-04-05T15:22:32.530000Z TestFramework (INFO): Tx is in the memory pool
2025-04-05T15:22:32.531000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/rpc_gettransactionstatus.py", line 35, in run_test
    mempool_tx = wallet.create_self_transfer(utxo_to_spend=utxo)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:22:32.582000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:22:32.883000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/rpc_gettransactionstatus_270
2025-04-05T15:22:32.884000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/rpc_gettransactionstatus_270/test_framework.log
2025-04-05T15:22:32.884000Z TestFramework (ERROR): 
2025-04-05T15:22:32.884000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/rpc_gettransactionstatus_270' to consolidate all logs
2025-04-05T15:22:32.884000Z TestFramework (ERROR): 
2025-04-05T15:22:32.884000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:22:32.884000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:22:32.884000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: rpc_packages.py ======

------- Stdout: -------
2025-04-05T15:21:57.999000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/rpc_packages_145
2025-04-05T15:21:59.740000Z TestFramework (INFO): Create some transactions
2025-04-05T15:21:59.742000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/rpc_packages.py", line 63, in run_test
    tx_hex = self.wallet.create_self_transfer(fee_rate=Decimal("100"))["hex"]
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:59.793000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:22:00.044000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/rpc_packages_145
2025-04-05T15:22:00.044000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/rpc_packages_145/test_framework.log
2025-04-05T15:22:00.044000Z TestFramework (ERROR): 
2025-04-05T15:22:00.045000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/rpc_packages_145' to consolidate all logs
2025-04-05T15:22:00.045000Z TestFramework (ERROR): 
2025-04-05T15:22:00.045000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:22:00.045000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:22:00.045000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: rpc_scantxoutset.py ======

------- Stdout: -------
2025-04-05T15:21:58.651000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/rpc_scantxoutset_146
2025-04-05T15:21:59.680000Z TestFramework (INFO): Test if we find coinbase outputs.
2025-04-05T15:21:59.730000Z TestFramework (INFO): Create UTXOs...
2025-04-05T15:21:59.734000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/rpc_scantxoutset.py", line 45, in run_test
    self.sendtodestination(spk, 2000)
  File "/work/test/functional/rpc_scantxoutset.py", line 25, in sendtodestination
    self.wallet.send_to(
  File "/work/test/functional/test_framework/wallet.py", line 283, in send_to
    tx = self.create_self_transfer(fee_rate=0)["tx"]
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:59.785000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:22:00.037000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/rpc_scantxoutset_146
2025-04-05T15:22:00.037000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/rpc_scantxoutset_146/test_framework.log
2025-04-05T15:22:00.037000Z TestFramework (ERROR): 
2025-04-05T15:22:00.037000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/rpc_scantxoutset_146' to consolidate all logs
2025-04-05T15:22:00.037000Z TestFramework (ERROR): 
2025-04-05T15:22:00.037000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:22:00.037000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:22:00.037000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: rpc_txoutproof.py ======

------- Stdout: -------
2025-04-05T15:22:16.774000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/rpc_txoutproof_206
2025-04-05T15:22:18.141000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/rpc_txoutproof.py", line 26, in run_test
    txid1 = miniwallet.send_self_transfer(from_node=self.nodes[0])["txid"]
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:22:18.192000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:22:18.444000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/rpc_txoutproof_206
2025-04-05T15:22:18.444000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/rpc_txoutproof_206/test_framework.log
2025-04-05T15:22:18.444000Z TestFramework (ERROR): 
2025-04-05T15:22:18.444000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250405_151758/rpc_txoutproof_206' to consolidate all logs
2025-04-05T15:22:18.444000Z TestFramework (ERROR): 
2025-04-05T15:22:18.444000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:22:18.444000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:22:18.444000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: abc_mempool_chainedtx.py
Bitcoin ABC functional tests: abc_mining_rtt.py
Bitcoin ABC functional tests: abc_p2p_avalanche_cooldown.py
Bitcoin ABC functional tests: abc_p2p_avalanche_transaction_finalization.py
Bitcoin ABC functional tests: abc_p2p_avalanche_transaction_voting.py
Bitcoin ABC functional tests: feature_bip68_sequence.py
Bitcoin ABC functional tests: feature_cltv.py
Bitcoin ABC functional tests: feature_coinstatsindex.py
Bitcoin ABC functional tests: feature_csv_activation.py
Bitcoin ABC functional tests: feature_dersig.py
Bitcoin ABC functional tests: feature_fastprune.py
Bitcoin ABC functional tests: mempool_expiry.py
Bitcoin ABC functional tests: mempool_limit.py
Bitcoin ABC functional tests: mempool_packages.py
Bitcoin ABC functional tests: mempool_reorg.py
Bitcoin ABC functional tests: mempool_resurrect.py
Bitcoin ABC functional tests: mempool_spend_coinbase.py
Bitcoin ABC functional tests: mining_getblocktemplate_longpoll.py
Bitcoin ABC functional tests: mining_prioritisetransaction.py
Bitcoin ABC functional tests: p2p_1p1c_network.py
Bitcoin ABC functional tests: p2p_blocksonly.py
Bitcoin ABC functional tests: p2p_feefilter.py
Bitcoin ABC functional tests: p2p_filter.py
Bitcoin ABC functional tests: p2p_leak_tx.py
Bitcoin ABC functional tests: p2p_net_deadlock.py
Bitcoin ABC functional tests: p2p_opportunistic_1p1c.py
Bitcoin ABC functional tests: p2p_orphan_handling.py
Bitcoin ABC functional tests: p2p_tx_privacy.py
Bitcoin ABC functional tests: rpc_blockchain.py
Bitcoin ABC functional tests: rpc_gettransactionstatus.py
Bitcoin ABC functional tests: rpc_packages.py
Bitcoin ABC functional tests: rpc_scantxoutset.py
Bitcoin ABC functional tests: rpc_txoutproof.py

Failed tests logs:

====== Bitcoin ABC functional tests: abc_mempool_chainedtx.py ======

------- Stdout: -------
2025-04-05T15:19:51.546000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/abc_mempool_chainedtx_216
2025-04-05T15:19:52.218000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/abc_mempool_chainedtx.py", line 27, in run_test
    for t in wallet.create_self_transfer_chain(
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 432, in create_self_transfer_chain
    tx = self.create_self_transfer(utxo_to_spend=chaintip_utxo)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:52.269000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:52.421000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/abc_mempool_chainedtx_216
2025-04-05T15:19:52.421000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/abc_mempool_chainedtx_216/test_framework.log
2025-04-05T15:19:52.421000Z TestFramework (ERROR): 
2025-04-05T15:19:52.421000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/abc_mempool_chainedtx_216' to consolidate all logs
2025-04-05T15:19:52.421000Z TestFramework (ERROR): 
2025-04-05T15:19:52.421000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:52.421000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:52.421000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: abc_mining_rtt.py ======

------- Stdout: -------
2025-04-05T15:18:32.823000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/abc_mining_rtt_35
2025-04-05T15:18:34.450000Z TestFramework (INFO): Check the block template is updated with the relevant RTT info
2025-04-05T15:18:34.590000Z TestFramework (INFO): Check the node tries to mine blocks with the real time difficulty
2025-04-05T15:18:48.046000Z TestFramework (INFO): Check the RTT is updated when longpoll returns
2025-04-05T15:18:48.122000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/abc_mining_rtt.py", line 180, in run_test
    mempool_tx = wallet.send_self_transfer(from_node=node)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:18:48.174000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:18:48.225000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/abc_mining_rtt_35
2025-04-05T15:18:48.225000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/abc_mining_rtt_35/test_framework.log
2025-04-05T15:18:48.225000Z TestFramework (ERROR): 
2025-04-05T15:18:48.226000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/abc_mining_rtt_35' to consolidate all logs
2025-04-05T15:18:48.226000Z TestFramework (ERROR): 
2025-04-05T15:18:48.226000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:18:48.226000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:18:48.226000Z TestFramework (ERROR):
------- Stderr: -------
Exception in thread Thread-1:
Traceback (most recent call last):
  File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
    self.run()
  File "/work/test/functional/abc_mining_rtt.py", line 38, in run
    self.longpoll_template = self.node.getblocktemplate(
                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/coverage.py", line 46, in __call__
    return_val = self.auth_service_proxy_instance.__call__(*args, **kwargs)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/authproxy.py", line 150, in __call__
    raise JSONRPCException(response["error"], status)
test_framework.authproxy.JSONRPCException: Shutting down (-9)
====== Bitcoin ABC functional tests: abc_p2p_avalanche_cooldown.py ======

------- Stdout: -------
2025-04-05T15:19:00.455000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/abc_p2p_avalanche_cooldown_54
2025-04-05T15:19:06.588000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/abc_p2p_avalanche_cooldown.py", line 65, in run_test
    txid = int(wallet.send_self_transfer(from_node=node)["txid"], 16)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:06.642000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:06.799000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/abc_p2p_avalanche_cooldown_54
2025-04-05T15:19:06.799000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/abc_p2p_avalanche_cooldown_54/test_framework.log
2025-04-05T15:19:06.800000Z TestFramework (ERROR): 
2025-04-05T15:19:06.800000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/abc_p2p_avalanche_cooldown_54' to consolidate all logs
2025-04-05T15:19:06.800000Z TestFramework (ERROR): 
2025-04-05T15:19:06.800000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:06.801000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:06.801000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: abc_p2p_avalanche_transaction_finalization.py ======

------- Stdout: -------
2025-04-05T15:17:46.023000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/abc_p2p_avalanche_transaction_finalization_4
2025-04-05T15:17:58.623000Z TestFramework (INFO): Check the finalization of simple non-chained txs
2025-04-05T15:18:04.925000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/abc_p2p_avalanche_transaction_finalization.py", line 226, in run_test
    self.test_simple_txs()
  File "/work/test/functional/abc_p2p_avalanche_transaction_finalization.py", line 111, in test_simple_txs
    txids = [
            ^
  File "/work/test/functional/abc_p2p_avalanche_transaction_finalization.py", line 112, in <listcomp>
    int(self.wallet.send_self_transfer(from_node=node)["txid"], 16)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:18:04.930000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:18:05.086000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/abc_p2p_avalanche_transaction_finalization_4
2025-04-05T15:18:05.086000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/abc_p2p_avalanche_transaction_finalization_4/test_framework.log
2025-04-05T15:18:05.086000Z TestFramework (ERROR): 
2025-04-05T15:18:05.086000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/abc_p2p_avalanche_transaction_finalization_4' to consolidate all logs
2025-04-05T15:18:05.087000Z TestFramework (ERROR): 
2025-04-05T15:18:05.087000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:18:05.087000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:18:05.087000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: abc_p2p_avalanche_transaction_voting.py ======

------- Stdout: -------
2025-04-05T15:17:45.983000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/abc_p2p_avalanche_transaction_voting_3
2025-04-05T15:17:47.222000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/abc_p2p_avalanche_transaction_voting.py", line 84, in run_test
    tx_ids = [
             ^
  File "/work/test/functional/abc_p2p_avalanche_transaction_voting.py", line 85, in <listcomp>
    int(wallet.send_self_transfer(from_node=node)["txid"], 16)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:17:47.223000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:17:47.325000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/abc_p2p_avalanche_transaction_voting_3
2025-04-05T15:17:47.325000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/abc_p2p_avalanche_transaction_voting_3/test_framework.log
2025-04-05T15:17:47.325000Z TestFramework (ERROR): 
2025-04-05T15:17:47.325000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/abc_p2p_avalanche_transaction_voting_3' to consolidate all logs
2025-04-05T15:17:47.325000Z TestFramework (ERROR): 
2025-04-05T15:17:47.325000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:17:47.326000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:17:47.326000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: feature_bip68_sequence.py ======

------- Stdout: -------
2025-04-05T15:18:36.291000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_bip68_sequence_36
2025-04-05T15:18:37.887000Z TestFramework (INFO): Running test disable flag
2025-04-05T15:18:37.888000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_bip68_sequence.py", line 51, in run_test
    self.test_disable_flag()
  File "/work/test/functional/feature_bip68_sequence.py", line 78, in test_disable_flag
    utxo = self.wallet.send_self_transfer(from_node=self.nodes[0])["new_utxo"]
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:18:37.890000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:18:38.115000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_bip68_sequence_36
2025-04-05T15:18:38.115000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_bip68_sequence_36/test_framework.log
2025-04-05T15:18:38.116000Z TestFramework (ERROR): 
2025-04-05T15:18:38.117000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_bip68_sequence_36' to consolidate all logs
2025-04-05T15:18:38.117000Z TestFramework (ERROR): 
2025-04-05T15:18:38.117000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:18:38.117000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:18:38.117000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: feature_cltv.py ======

------- Stdout: -------
2025-04-05T15:19:31.161000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_cltv_104
2025-04-05T15:19:31.817000Z TestFramework (INFO): Mining 1349 blocks
2025-04-05T15:19:33.871000Z TestFramework (INFO): Test that an invalid-according-to-CLTV transaction can still appear in a block
2025-04-05T15:19:33.871000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_cltv.py", line 94, in run_test
    fundtx = wallet.create_self_transfer()["tx"]
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:33.922000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:34.023000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_cltv_104
2025-04-05T15:19:34.023000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_cltv_104/test_framework.log
2025-04-05T15:19:34.023000Z TestFramework (ERROR): 
2025-04-05T15:19:34.024000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_cltv_104' to consolidate all logs
2025-04-05T15:19:34.024000Z TestFramework (ERROR): 
2025-04-05T15:19:34.024000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:34.024000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:34.024000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: feature_coinstatsindex.py ======

------- Stdout: -------
2025-04-05T15:19:09.497000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_coinstatsindex_61
2025-04-05T15:19:13.559000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_coinstatsindex.py", line 37, in run_test
    self._test_coin_stats_index()
  File "/work/test/functional/feature_coinstatsindex.py", line 65, in _test_coin_stats_index
    self.wallet.send_self_transfer(from_node=node)
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:13.610000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:13.768000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_coinstatsindex_61
2025-04-05T15:19:13.768000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_coinstatsindex_61/test_framework.log
2025-04-05T15:19:13.768000Z TestFramework (ERROR): 
2025-04-05T15:19:13.769000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_coinstatsindex_61' to consolidate all logs
2025-04-05T15:19:13.769000Z TestFramework (ERROR): 
2025-04-05T15:19:13.769000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:13.769000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:13.769000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: feature_csv_activation.py ======

------- Stdout: -------
2025-04-05T15:18:16.292000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_csv_activation_25
2025-04-05T15:18:16.678000Z TestFramework (INFO): Generate blocks in the past for coinbase outputs.
2025-04-05T15:18:18.536000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_csv_activation.py", line 244, in run_test
    bip68inputs.append(self.send_generic_input_tx(self.coinbase_blocks))
                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/feature_csv_activation.py", line 122, in send_generic_input_tx
    return self.miniwallet.send_self_transfer(
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:18:18.588000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:18:18.689000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_csv_activation_25
2025-04-05T15:18:18.689000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_csv_activation_25/test_framework.log
2025-04-05T15:18:18.689000Z TestFramework (ERROR): 
2025-04-05T15:18:18.690000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_csv_activation_25' to consolidate all logs
2025-04-05T15:18:18.690000Z TestFramework (ERROR): 
2025-04-05T15:18:18.690000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:18:18.690000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:18:18.690000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: feature_dersig.py ======

------- Stdout: -------
2025-04-05T15:19:31.172000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_dersig_105
2025-04-05T15:19:31.833000Z TestFramework (INFO): Mining 1250 blocks
2025-04-05T15:19:34.093000Z TestFramework (INFO): Test that blocks must now be at least version 3
2025-04-05T15:19:34.196000Z TestFramework (INFO): Test that transactions with non-DER signatures cannot appear in a block
2025-04-05T15:19:34.207000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_dersig.py", line 79, in run_test
    spendtx = self.create_tx(self.coinbase_txids[1])
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/feature_dersig.py", line 47, in create_tx
    return self.miniwallet.create_self_transfer(utxo_to_spend=utxo_to_spend)["tx"]
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:34.258000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:34.410000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_dersig_105
2025-04-05T15:19:34.410000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_dersig_105/test_framework.log
2025-04-05T15:19:34.410000Z TestFramework (ERROR): 
2025-04-05T15:19:34.410000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_dersig_105' to consolidate all logs
2025-04-05T15:19:34.410000Z TestFramework (ERROR): 
2025-04-05T15:19:34.410000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:34.411000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:34.411000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: feature_fastprune.py ======

------- Stdout: -------
2025-04-05T15:19:53.022000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_fastprune_242
2025-04-05T15:19:53.609000Z TestFramework (INFO): ensure that large blocks don't crash or freeze in -fastprune
2025-04-05T15:19:53.680000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_fastprune.py", line 19, in run_test
    tx = wallet.create_self_transfer()["tx"]
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:53.731000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:53.883000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_fastprune_242
2025-04-05T15:19:53.883000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_fastprune_242/test_framework.log
2025-04-05T15:19:53.883000Z TestFramework (ERROR): 
2025-04-05T15:19:53.884000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/feature_fastprune_242' to consolidate all logs
2025-04-05T15:19:53.884000Z TestFramework (ERROR): 
2025-04-05T15:19:53.884000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:53.884000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:53.884000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mempool_expiry.py ======

------- Stdout: -------
2025-04-05T15:19:46.917000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_expiry_188
2025-04-05T15:19:48.224000Z TestFramework (INFO): Test default mempool expiry timeout of 336 hours.
2025-04-05T15:19:48.224000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_expiry.py", line 120, in run_test
    self.test_transaction_expiry(DEFAULT_MEMPOOL_EXPIRY_HOURS)
  File "/work/test/functional/mempool_expiry.py", line 33, in test_transaction_expiry
    parent_txid = self.wallet.send_self_transfer(from_node=node)["txid"]
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:48.276000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:48.377000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_expiry_188
2025-04-05T15:19:48.377000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_expiry_188/test_framework.log
2025-04-05T15:19:48.378000Z TestFramework (ERROR): 
2025-04-05T15:19:48.378000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_expiry_188' to consolidate all logs
2025-04-05T15:19:48.378000Z TestFramework (ERROR): 
2025-04-05T15:19:48.378000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:48.378000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:48.378000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mempool_limit.py ======

------- Stdout: -------
2025-04-05T15:18:52.863000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_limit_48
2025-04-05T15:18:53.503000Z TestFramework (INFO): Check that mempoolminfee is minrelaytxfee
2025-04-05T15:18:53.504000Z TestFramework (INFO): Fill the mempool until eviction is triggered and the mempoolminfee rises
2025-04-05T15:18:53.965000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_limit.py", line 165, in run_test
    fill_mempool(self, node, self.wallet)
  File "/work/test/functional/test_framework/util.py", line 590, in fill_mempool
    tx_to_be_evicted_id = miniwallet.send_self_transfer(
                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:18:53.969000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:18:54.121000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_limit_48
2025-04-05T15:18:54.121000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_limit_48/test_framework.log
2025-04-05T15:18:54.121000Z TestFramework (ERROR): 
2025-04-05T15:18:54.122000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_limit_48' to consolidate all logs
2025-04-05T15:18:54.122000Z TestFramework (ERROR): 
2025-04-05T15:18:54.122000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:18:54.122000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:18:54.122000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mempool_packages.py ======

------- Stdout: -------
2025-04-05T15:19:47.010000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_packages_189
2025-04-05T15:19:47.808000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_packages.py", line 27, in run_test
    chain = self.wallet.send_self_transfer_chain(
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 445, in send_self_transfer_chain
    chain = self.create_self_transfer_chain(**kwargs)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 432, in create_self_transfer_chain
    tx = self.create_self_transfer(utxo_to_spend=chaintip_utxo)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:47.859000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:48.062000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_packages_189
2025-04-05T15:19:48.062000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_packages_189/test_framework.log
2025-04-05T15:19:48.062000Z TestFramework (ERROR): 
2025-04-05T15:19:48.062000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_packages_189' to consolidate all logs
2025-04-05T15:19:48.062000Z TestFramework (ERROR): 
2025-04-05T15:19:48.062000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:48.062000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:48.062000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mempool_reorg.py ======

------- Stdout: -------
2025-04-05T15:19:47.188000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_reorg_190
2025-04-05T15:19:47.906000Z TestFramework (INFO): Add 4 coinbase utxos to the miniwallet
2025-04-05T15:19:47.911000Z TestFramework (INFO): Create three transactions spending from coinbase utxos: spend_1, spend_2, spend_3
2025-04-05T15:19:47.911000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_reorg.py", line 46, in run_test
    spend_1 = wallet.create_self_transfer(utxo_to_spend=utxo_1)
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:47.963000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:48.116000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_reorg_190
2025-04-05T15:19:48.116000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_reorg_190/test_framework.log
2025-04-05T15:19:48.116000Z TestFramework (ERROR): 
2025-04-05T15:19:48.116000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_reorg_190' to consolidate all logs
2025-04-05T15:19:48.116000Z TestFramework (ERROR): 
2025-04-05T15:19:48.116000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:48.116000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:48.116000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mempool_resurrect.py ======

------- Stdout: -------
2025-04-05T15:19:53.867000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_resurrect_250
2025-04-05T15:19:54.667000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_resurrect.py", line 29, in run_test
    spends1_ids = [
                  ^
  File "/work/test/functional/mempool_resurrect.py", line 30, in <listcomp>
    wallet.send_self_transfer(from_node=node)["txid"] for _ in range(3)
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:54.722000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:54.923000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_resurrect_250
2025-04-05T15:19:54.923000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_resurrect_250/test_framework.log
2025-04-05T15:19:54.923000Z TestFramework (ERROR): 
2025-04-05T15:19:54.923000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_resurrect_250' to consolidate all logs
2025-04-05T15:19:54.923000Z TestFramework (ERROR): 
2025-04-05T15:19:54.923000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:54.924000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:54.924000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mempool_spend_coinbase.py ======

------- Stdout: -------
2025-04-05T15:19:53.935000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_spend_coinbase_251
2025-04-05T15:19:54.884000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_spend_coinbase.py", line 41, in run_test
    spend_mature_id = wallet.send_self_transfer(
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:54.935000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:55.187000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_spend_coinbase_251
2025-04-05T15:19:55.187000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_spend_coinbase_251/test_framework.log
2025-04-05T15:19:55.187000Z TestFramework (ERROR): 
2025-04-05T15:19:55.187000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mempool_spend_coinbase_251' to consolidate all logs
2025-04-05T15:19:55.187000Z TestFramework (ERROR): 
2025-04-05T15:19:55.187000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:55.187000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:55.188000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: mining_getblocktemplate_longpoll.py ======

------- Stdout: -------
2025-04-05T15:17:47.625000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mining_getblocktemplate_longpoll_15
2025-04-05T15:17:48.127000Z TestFramework (INFO): Test that longpollid doesn't change between successive getblocktemplate() invocations if nothing else happens
2025-04-05T15:17:48.156000Z TestFramework (INFO): Test that longpoll waits if we do nothing
2025-04-05T15:17:53.226000Z TestFramework (INFO): Test that longpoll will terminate if another node generates a block
2025-04-05T15:17:53.245000Z TestFramework (INFO): Test that longpoll will terminate if we generate a block ourselves
2025-04-05T15:17:53.276000Z TestFramework (INFO): Test that introducing a new transaction into the mempool will terminate the longpoll
2025-04-05T15:17:53.292000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mining_getblocktemplate_longpoll.py", line 106, in run_test
    miniwallets[0].send_self_transfer(
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:17:53.344000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:17:53.395000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mining_getblocktemplate_longpoll_15
2025-04-05T15:17:53.396000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mining_getblocktemplate_longpoll_15/test_framework.log
2025-04-05T15:17:53.396000Z TestFramework (ERROR): 
2025-04-05T15:17:53.396000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mining_getblocktemplate_longpoll_15' to consolidate all logs
2025-04-05T15:17:53.396000Z TestFramework (ERROR): 
2025-04-05T15:17:53.396000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:17:53.396000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:17:53.396000Z TestFramework (ERROR):
------- Stderr: -------
Exception in thread Thread-3:
Traceback (most recent call last):
  File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
    self.run()
  File "/work/test/functional/mining_getblocktemplate_longpoll.py", line 35, in run
    self.node.getblocktemplate({"longpollid": self.longpollid})
  File "/work/test/functional/test_framework/coverage.py", line 46, in __call__
    return_val = self.auth_service_proxy_instance.__call__(*args, **kwargs)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/authproxy.py", line 150, in __call__
    raise JSONRPCException(response["error"], status)
test_framework.authproxy.JSONRPCException: Shutting down (-9)
====== Bitcoin ABC functional tests: mining_prioritisetransaction.py ======

------- Stdout: -------
2025-04-05T15:19:31.344000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mining_prioritisetransaction_107
2025-04-05T15:19:32.425000Z TestFramework (INFO): Test diamond-shape package with priority
2025-04-05T15:19:32.426000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mining_prioritisetransaction.py", line 222, in run_test
    self.test_diamond()
  File "/work/test/functional/mining_prioritisetransaction.py", line 44, in test_diamond
    tx_o_a = self.wallet.send_self_transfer_multi(
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 294, in send_self_transfer_multi
    tx = self.create_self_transfer_multi(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:32.478000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:32.578000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mining_prioritisetransaction_107
2025-04-05T15:19:32.579000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mining_prioritisetransaction_107/test_framework.log
2025-04-05T15:19:32.579000Z TestFramework (ERROR): 
2025-04-05T15:19:32.579000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/mining_prioritisetransaction_107' to consolidate all logs
2025-04-05T15:19:32.579000Z TestFramework (ERROR): 
2025-04-05T15:19:32.579000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:32.579000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:32.579000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_1p1c_network.py ======

------- Stdout: -------
2025-04-05T15:18:54.486000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_1p1c_network_49
2025-04-05T15:18:58.502000Z TestFramework (INFO): Fill mempools with large transactions to raise mempool minimum feerates
2025-04-05T15:18:58.561000Z TestFramework (INFO): Fill the mempool until eviction is triggered and the mempoolminfee rises
2025-04-05T15:19:01.166000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_1p1c_network.py", line 151, in run_test
    self.raise_network_minfee()
  File "/work/test/functional/p2p_1p1c_network.py", line 34, in raise_network_minfee
    fill_mempool(self, self.nodes[0], filler_wallet)
  File "/work/test/functional/test_framework/util.py", line 590, in fill_mempool
    tx_to_be_evicted_id = miniwallet.send_self_transfer(
                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:01.168000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:01.328000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_1p1c_network_49
2025-04-05T15:19:01.328000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_1p1c_network_49/test_framework.log
2025-04-05T15:19:01.328000Z TestFramework (ERROR): 
2025-04-05T15:19:01.329000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_1p1c_network_49' to consolidate all logs
2025-04-05T15:19:01.329000Z TestFramework (ERROR): 
2025-04-05T15:19:01.329000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:01.329000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:01.329000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_blocksonly.py ======

------- Stdout: -------
2025-04-05T15:19:02.822000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_blocksonly_56
2025-04-05T15:19:04.284000Z TestFramework (INFO): Tests with node running in -blocksonly mode
2025-04-05T15:19:04.388000Z TestFramework (INFO): Check that txs from P2P are rejected and result in disconnect
2025-04-05T15:19:04.390000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_blocksonly.py", line 23, in run_test
    self.blocksonly_mode_tests()
  File "/work/test/functional/p2p_blocksonly.py", line 31, in blocksonly_mode_tests
    tx, txid, tx_hex = self.check_p2p_tx_violation()
                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/p2p_blocksonly.py", line 154, in check_p2p_tx_violation
    spendtx = self.miniwallet.create_self_transfer()
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:04.441000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:04.644000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_blocksonly_56
2025-04-05T15:19:04.644000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_blocksonly_56/test_framework.log
2025-04-05T15:19:04.644000Z TestFramework (ERROR): 
2025-04-05T15:19:04.645000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_blocksonly_56' to consolidate all logs
2025-04-05T15:19:04.645000Z TestFramework (ERROR): 
2025-04-05T15:19:04.645000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:04.645000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:04.645000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_feefilter.py ======

------- Stdout: -------
2025-04-05T15:19:31.859000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_feefilter_108
2025-04-05T15:19:32.845000Z TestFramework (INFO): Check that peers without forcerelay permission (default) get a feefilter message
2025-04-05T15:19:32.946000Z TestFramework (INFO): Check that peers with forcerelay permission do not get a feefilter message
2025-04-05T15:19:34.010000Z TestFramework (INFO): Test txs paying 0.2 sat/byte are received by test connection
2025-04-05T15:19:34.010000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_feefilter.py", line 63, in run_test
    self.test_feefilter()
  File "/work/test/functional/p2p_feefilter.py", line 95, in test_feefilter
    txids = [
            ^
  File "/work/test/functional/p2p_feefilter.py", line 96, in <listcomp>
    miniwallet.send_self_transfer(fee_rate=Decimal("2.00"), from_node=node1)[
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:34.062000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:34.214000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_feefilter_108
2025-04-05T15:19:34.214000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_feefilter_108/test_framework.log
2025-04-05T15:19:34.214000Z TestFramework (ERROR): 
2025-04-05T15:19:34.214000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_feefilter_108' to consolidate all logs
2025-04-05T15:19:34.214000Z TestFramework (ERROR): 
2025-04-05T15:19:34.214000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:34.214000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:34.214000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_filter.py ======

------- Stdout: -------
2025-04-05T15:19:32.597000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_filter_109
2025-04-05T15:19:33.106000Z TestFramework (INFO): Test filter size limits
2025-04-05T15:19:33.106000Z TestFramework (INFO): Check that too large filter is rejected
2025-04-05T15:19:33.157000Z TestFramework (INFO): Check that max size filter is accepted
2025-04-05T15:19:33.259000Z TestFramework (INFO): Check that filter with too many hash functions is rejected
2025-04-05T15:19:33.309000Z TestFramework (INFO): Check that filter with max hash functions is accepted
2025-04-05T15:19:33.360000Z TestFramework (INFO): Check that max size data element to add to the filter is accepted
2025-04-05T15:19:33.411000Z TestFramework (INFO): Check that too large data element to add to the filter is rejected
2025-04-05T15:19:33.512000Z TestFramework (INFO): Test BIP 37 for a node with fRelay = True (default)
2025-04-05T15:19:33.563000Z TestFramework (INFO): Check that we receive merkleblock and tx if the filter matches a tx in a block
2025-04-05T15:19:33.567000Z TestFramework (INFO): Check that we only receive a merkleblock if the filter does not match a tx in a block
2025-04-05T15:19:33.573000Z TestFramework (INFO): Check that we not receive a tx if the filter does not match a mempool tx
2025-04-05T15:19:33.578000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_filter.py", line 286, in run_test
    self.test_filter(filter_peer)
  File "/work/test/functional/p2p_filter.py", line 222, in test_filter
    self.wallet.send_to(
  File "/work/test/functional/test_framework/wallet.py", line 283, in send_to
    tx = self.create_self_transfer(fee_rate=0)["tx"]
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:33.630000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:33.731000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_filter_109
2025-04-05T15:19:33.731000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_filter_109/test_framework.log
2025-04-05T15:19:33.731000Z TestFramework (ERROR): 
2025-04-05T15:19:33.731000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_filter_109' to consolidate all logs
2025-04-05T15:19:33.731000Z TestFramework (ERROR): 
2025-04-05T15:19:33.731000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:33.732000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:33.732000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_leak_tx.py ======

------- Stdout: -------
2025-04-05T15:19:54.388000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_leak_tx_257
2025-04-05T15:19:55.253000Z TestFramework (INFO): Running test up to 100 times.
2025-04-05T15:19:55.253000Z TestFramework (INFO): Run repeat 1
2025-04-05T15:19:55.253000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_leak_tx.py", line 34, in run_test
    txid = miniwallet.send_self_transfer(from_node=gen_node)["txid"]
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:55.304000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:55.456000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_leak_tx_257
2025-04-05T15:19:55.456000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_leak_tx_257/test_framework.log
2025-04-05T15:19:55.456000Z TestFramework (ERROR): 
2025-04-05T15:19:55.456000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_leak_tx_257' to consolidate all logs
2025-04-05T15:19:55.456000Z TestFramework (ERROR): 
2025-04-05T15:19:55.456000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:55.456000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:55.456000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_net_deadlock.py ======

------- Stdout: -------
2025-04-05T15:19:22.429000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_net_deadlock_78
2025-04-05T15:19:23.928000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_net_deadlock.py", line 34, in run_test
    txs = [wallet.create_self_transfer()["tx"] for _ in range(4)]
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/p2p_net_deadlock.py", line 34, in <listcomp>
    txs = [wallet.create_self_transfer()["tx"] for _ in range(4)]
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:23.979000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:24.182000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_net_deadlock_78
2025-04-05T15:19:24.182000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_net_deadlock_78/test_framework.log
2025-04-05T15:19:24.182000Z TestFramework (ERROR): 
2025-04-05T15:19:24.182000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_net_deadlock_78' to consolidate all logs
2025-04-05T15:19:24.182000Z TestFramework (ERROR): 
2025-04-05T15:19:24.182000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:24.182000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:24.182000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_opportunistic_1p1c.py ======

------- Stdout: -------
2025-04-05T15:17:46.047000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_opportunistic_1p1c_0
2025-04-05T15:17:46.717000Z TestFramework (INFO): Fill the mempool until eviction is triggered and the mempoolminfee rises
2025-04-05T15:17:47.053000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_opportunistic_1p1c.py", line 462, in run_test
    fill_mempool(self, node, filler_wallet)
  File "/work/test/functional/test_framework/util.py", line 590, in fill_mempool
    tx_to_be_evicted_id = miniwallet.send_self_transfer(
                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:17:47.104000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:17:47.207000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_opportunistic_1p1c_0
2025-04-05T15:17:47.207000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_opportunistic_1p1c_0/test_framework.log
2025-04-05T15:17:47.207000Z TestFramework (ERROR): 
2025-04-05T15:17:47.207000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_opportunistic_1p1c_0' to consolidate all logs
2025-04-05T15:17:47.207000Z TestFramework (ERROR): 
2025-04-05T15:17:47.207000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:17:47.207000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:17:47.207000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_orphan_handling.py ======

------- Stdout: -------
2025-04-05T15:19:32.621000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_orphan_handling_110
2025-04-05T15:19:33.229000Z TestFramework (INFO): Test missing parents that arrive during delay are not requested
2025-04-05T15:19:33.235000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_orphan_handling.py", line 393, in run_test
    self.test_arrival_timing_orphan()
  File "/work/test/functional/p2p_orphan_handling.py", line 44, in wrapper
    func(self)
  File "/work/test/functional/p2p_orphan_handling.py", line 134, in test_arrival_timing_orphan
    tx_parent_arrives = self.wallet.create_self_transfer()
                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:33.287000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:33.388000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_orphan_handling_110
2025-04-05T15:19:33.388000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_orphan_handling_110/test_framework.log
2025-04-05T15:19:33.388000Z TestFramework (ERROR): 
2025-04-05T15:19:33.388000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_orphan_handling_110' to consolidate all logs
2025-04-05T15:19:33.388000Z TestFramework (ERROR): 
2025-04-05T15:19:33.388000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:33.388000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:33.388000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: p2p_tx_privacy.py ======

------- Stdout: -------
2025-04-05T15:19:24.179000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_tx_privacy_79
2025-04-05T15:19:24.731000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_tx_privacy.py", line 58, in run_test
    tx1 = self.wallet.create_self_transfer()["tx"]
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:24.782000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:24.933000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_tx_privacy_79
2025-04-05T15:19:24.933000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_tx_privacy_79/test_framework.log
2025-04-05T15:19:24.933000Z TestFramework (ERROR): 
2025-04-05T15:19:24.933000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/p2p_tx_privacy_79' to consolidate all logs
2025-04-05T15:19:24.933000Z TestFramework (ERROR): 
2025-04-05T15:19:24.933000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:24.933000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:24.933000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: rpc_blockchain.py ======

------- Stdout: -------
2025-04-05T15:19:12.797000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/rpc_blockchain_65
2025-04-05T15:19:13.145000Z TestFramework (INFO): Generate 200 blocks after the genesis block in ten-minute steps
2025-04-05T15:19:14.961000Z TestFramework (INFO): A block tip of more than MAX_FUTURE_BLOCK_TIME in the future raises an error
2025-04-05T15:19:15.343000Z TestFramework (INFO): A block tip of MAX_FUTURE_BLOCK_TIME in the future is fine
2025-04-05T15:19:16.100000Z TestFramework (INFO): Test getblockchaininfo
2025-04-05T15:19:17.422000Z TestFramework (INFO): Test getchaintxstats
2025-04-05T15:19:17.449000Z TestFramework (INFO): Test gettxoutsetinfo works for blockchain with just the genesis block
2025-04-05T15:19:17.496000Z TestFramework (INFO): Test gettxoutsetinfo returns the same result after invalidate/reconsider block
2025-04-05T15:19:17.787000Z TestFramework (INFO): Test gettxoutsetinfo hash_type option
2025-04-05T15:19:17.851000Z TestFramework (INFO): Test getblockheader
2025-04-05T15:19:17.856000Z TestFramework (INFO): Test getdifficulty
2025-04-05T15:19:17.856000Z TestFramework (INFO): Test getnetworkhashps
2025-04-05T15:19:17.858000Z TestFramework (INFO): Test stopping at height
2025-04-05T15:19:21.873000Z TestFramework (INFO): Test waitforblockheight
2025-04-05T15:19:22.096000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/rpc_blockchain.py", line 91, in run_test
    self._test_getblock_txfee()
  File "/work/test/functional/rpc_blockchain.py", line 544, in _test_getblock_txfee
    txid = miniwallet.send_self_transfer(fee_rate=fee_per_kb, from_node=node)[
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:22.147000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:22.298000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/rpc_blockchain_65
2025-04-05T15:19:22.298000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/rpc_blockchain_65/test_framework.log
2025-04-05T15:19:22.298000Z TestFramework (ERROR): 
2025-04-05T15:19:22.299000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/rpc_blockchain_65' to consolidate all logs
2025-04-05T15:19:22.299000Z TestFramework (ERROR): 
2025-04-05T15:19:22.299000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:22.299000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:22.299000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: rpc_gettransactionstatus.py ======

------- Stdout: -------
2025-04-05T15:19:55.666000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/rpc_gettransactionstatus_270
2025-04-05T15:19:56.267000Z TestFramework (INFO): Tx doesn't exist in any memory pool
2025-04-05T15:19:56.292000Z TestFramework (INFO): Tx is in the memory pool
2025-04-05T15:19:56.292000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/rpc_gettransactionstatus.py", line 35, in run_test
    mempool_tx = wallet.create_self_transfer(utxo_to_spend=utxo)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:56.343000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:56.394000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/rpc_gettransactionstatus_270
2025-04-05T15:19:56.395000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/rpc_gettransactionstatus_270/test_framework.log
2025-04-05T15:19:56.395000Z TestFramework (ERROR): 
2025-04-05T15:19:56.395000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/rpc_gettransactionstatus_270' to consolidate all logs
2025-04-05T15:19:56.395000Z TestFramework (ERROR): 
2025-04-05T15:19:56.395000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:56.395000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:56.395000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: rpc_packages.py ======

------- Stdout: -------
2025-04-05T15:19:41.340000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/rpc_packages_145
2025-04-05T15:19:41.835000Z TestFramework (INFO): Create some transactions
2025-04-05T15:19:41.836000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/rpc_packages.py", line 63, in run_test
    tx_hex = self.wallet.create_self_transfer(fee_rate=Decimal("100"))["hex"]
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:41.887000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:42.239000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/rpc_packages_145
2025-04-05T15:19:42.239000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/rpc_packages_145/test_framework.log
2025-04-05T15:19:42.239000Z TestFramework (ERROR): 
2025-04-05T15:19:42.239000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/rpc_packages_145' to consolidate all logs
2025-04-05T15:19:42.239000Z TestFramework (ERROR): 
2025-04-05T15:19:42.239000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:42.239000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:42.239000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: rpc_scantxoutset.py ======

------- Stdout: -------
2025-04-05T15:19:41.429000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/rpc_scantxoutset_146
2025-04-05T15:19:41.815000Z TestFramework (INFO): Test if we find coinbase outputs.
2025-04-05T15:19:41.826000Z TestFramework (INFO): Create UTXOs...
2025-04-05T15:19:41.831000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/rpc_scantxoutset.py", line 45, in run_test
    self.sendtodestination(spk, 2000)
  File "/work/test/functional/rpc_scantxoutset.py", line 25, in sendtodestination
    self.wallet.send_to(
  File "/work/test/functional/test_framework/wallet.py", line 283, in send_to
    tx = self.create_self_transfer(fee_rate=0)["tx"]
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:41.883000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:42.234000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/rpc_scantxoutset_146
2025-04-05T15:19:42.234000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/rpc_scantxoutset_146/test_framework.log
2025-04-05T15:19:42.234000Z TestFramework (ERROR): 
2025-04-05T15:19:42.234000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/rpc_scantxoutset_146' to consolidate all logs
2025-04-05T15:19:42.234000Z TestFramework (ERROR): 
2025-04-05T15:19:42.234000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:42.234000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:42.234000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: rpc_txoutproof.py ======

------- Stdout: -------
2025-04-05T15:19:49.742000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/rpc_txoutproof_206
2025-04-05T15:19:50.248000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/rpc_txoutproof.py", line 26, in run_test
    txid1 = miniwallet.send_self_transfer(from_node=self.nodes[0])["txid"]
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:19:50.299000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:19:50.451000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/rpc_txoutproof_206
2025-04-05T15:19:50.451000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/rpc_txoutproof_206/test_framework.log
2025-04-05T15:19:50.451000Z TestFramework (ERROR): 
2025-04-05T15:19:50.452000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151744/rpc_txoutproof_206' to consolidate all logs
2025-04-05T15:19:50.452000Z TestFramework (ERROR): 
2025-04-05T15:19:50.452000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:19:50.452000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:19:50.452000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: abc_mempool_chainedtx.py ======

------- Stdout: -------
2025-04-05T15:21:33.104000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/abc_mempool_chainedtx_216
2025-04-05T15:21:33.535000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/abc_mempool_chainedtx.py", line 27, in run_test
    for t in wallet.create_self_transfer_chain(
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 432, in create_self_transfer_chain
    tx = self.create_self_transfer(utxo_to_spend=chaintip_utxo)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:33.586000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:33.687000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/abc_mempool_chainedtx_216
2025-04-05T15:21:33.687000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/abc_mempool_chainedtx_216/test_framework.log
2025-04-05T15:21:33.687000Z TestFramework (ERROR): 
2025-04-05T15:21:33.687000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/abc_mempool_chainedtx_216' to consolidate all logs
2025-04-05T15:21:33.687000Z TestFramework (ERROR): 
2025-04-05T15:21:33.687000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:33.688000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:33.688000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: abc_mining_rtt.py ======

------- Stdout: -------
2025-04-05T15:20:34.198000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/abc_mining_rtt_35
2025-04-05T15:20:34.611000Z TestFramework (INFO): Check the block template is updated with the relevant RTT info
2025-04-05T15:20:34.640000Z TestFramework (INFO): Check the node tries to mine blocks with the real time difficulty
2025-04-05T15:20:41.247000Z TestFramework (INFO): Check the RTT is updated when longpoll returns
2025-04-05T15:20:41.290000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/abc_mining_rtt.py", line 180, in run_test
    mempool_tx = wallet.send_self_transfer(from_node=node)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:41.341000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:41.442000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/abc_mining_rtt_35
2025-04-05T15:20:41.443000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/abc_mining_rtt_35/test_framework.log
2025-04-05T15:20:41.443000Z TestFramework (ERROR): 
2025-04-05T15:20:41.443000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/abc_mining_rtt_35' to consolidate all logs
2025-04-05T15:20:41.443000Z TestFramework (ERROR): 
2025-04-05T15:20:41.443000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:41.443000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:41.443000Z TestFramework (ERROR):
------- Stderr: -------
Exception in thread Thread-1:
Traceback (most recent call last):
  File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
    self.run()
  File "/work/test/functional/abc_mining_rtt.py", line 38, in run
    self.longpoll_template = self.node.getblocktemplate(
                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/coverage.py", line 46, in __call__
    return_val = self.auth_service_proxy_instance.__call__(*args, **kwargs)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/authproxy.py", line 150, in __call__
    raise JSONRPCException(response["error"], status)
test_framework.authproxy.JSONRPCException: Shutting down (-9)
====== Bitcoin ABC functional tests with the next upgrade activated: abc_p2p_avalanche_cooldown.py ======

------- Stdout: -------
2025-04-05T15:20:49.262000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/abc_p2p_avalanche_cooldown_54
2025-04-05T15:20:51.795000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/abc_p2p_avalanche_cooldown.py", line 65, in run_test
    txid = int(wallet.send_self_transfer(from_node=node)["txid"], 16)
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:51.847000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:51.998000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/abc_p2p_avalanche_cooldown_54
2025-04-05T15:20:51.998000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/abc_p2p_avalanche_cooldown_54/test_framework.log
2025-04-05T15:20:51.998000Z TestFramework (ERROR): 
2025-04-05T15:20:51.998000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/abc_p2p_avalanche_cooldown_54' to consolidate all logs
2025-04-05T15:20:51.998000Z TestFramework (ERROR): 
2025-04-05T15:20:51.998000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:51.998000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:51.998000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: abc_p2p_avalanche_transaction_finalization.py ======

------- Stdout: -------
2025-04-05T15:19:59.580000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/abc_p2p_avalanche_transaction_finalization_4
2025-04-05T15:20:06.831000Z TestFramework (INFO): Check the finalization of simple non-chained txs
2025-04-05T15:20:09.668000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/abc_p2p_avalanche_transaction_finalization.py", line 226, in run_test
    self.test_simple_txs()
  File "/work/test/functional/abc_p2p_avalanche_transaction_finalization.py", line 111, in test_simple_txs
    txids = [
            ^
  File "/work/test/functional/abc_p2p_avalanche_transaction_finalization.py", line 112, in <listcomp>
    int(self.wallet.send_self_transfer(from_node=node)["txid"], 16)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:09.720000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:09.821000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/abc_p2p_avalanche_transaction_finalization_4
2025-04-05T15:20:09.821000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/abc_p2p_avalanche_transaction_finalization_4/test_framework.log
2025-04-05T15:20:09.821000Z TestFramework (ERROR): 
2025-04-05T15:20:09.821000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/abc_p2p_avalanche_transaction_finalization_4' to consolidate all logs
2025-04-05T15:20:09.822000Z TestFramework (ERROR): 
2025-04-05T15:20:09.822000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:09.822000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:09.822000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: abc_p2p_avalanche_transaction_voting.py ======

------- Stdout: -------
2025-04-05T15:19:59.563000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/abc_p2p_avalanche_transaction_voting_3
2025-04-05T15:20:00.505000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/abc_p2p_avalanche_transaction_voting.py", line 84, in run_test
    tx_ids = [
             ^
  File "/work/test/functional/abc_p2p_avalanche_transaction_voting.py", line 85, in <listcomp>
    int(wallet.send_self_transfer(from_node=node)["txid"], 16)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:00.556000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:00.657000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/abc_p2p_avalanche_transaction_voting_3
2025-04-05T15:20:00.657000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/abc_p2p_avalanche_transaction_voting_3/test_framework.log
2025-04-05T15:20:00.657000Z TestFramework (ERROR): 
2025-04-05T15:20:00.657000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/abc_p2p_avalanche_transaction_voting_3' to consolidate all logs
2025-04-05T15:20:00.657000Z TestFramework (ERROR): 
2025-04-05T15:20:00.657000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:00.657000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:00.657000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: feature_bip68_sequence.py ======

------- Stdout: -------
2025-04-05T15:20:34.284000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_bip68_sequence_36
2025-04-05T15:20:34.727000Z TestFramework (INFO): Running test disable flag
2025-04-05T15:20:34.728000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_bip68_sequence.py", line 51, in run_test
    self.test_disable_flag()
  File "/work/test/functional/feature_bip68_sequence.py", line 78, in test_disable_flag
    utxo = self.wallet.send_self_transfer(from_node=self.nodes[0])["new_utxo"]
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:34.779000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:34.931000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_bip68_sequence_36
2025-04-05T15:20:34.931000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_bip68_sequence_36/test_framework.log
2025-04-05T15:20:34.931000Z TestFramework (ERROR): 
2025-04-05T15:20:34.931000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_bip68_sequence_36' to consolidate all logs
2025-04-05T15:20:34.931000Z TestFramework (ERROR): 
2025-04-05T15:20:34.931000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:34.931000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:34.931000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: feature_cltv.py ======

------- Stdout: -------
2025-04-05T15:21:12.329000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_cltv_104
2025-04-05T15:21:13.364000Z TestFramework (INFO): Mining 1349 blocks
2025-04-05T15:21:15.769000Z TestFramework (INFO): Test that an invalid-according-to-CLTV transaction can still appear in a block
2025-04-05T15:21:15.770000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_cltv.py", line 94, in run_test
    fundtx = wallet.create_self_transfer()["tx"]
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:15.822000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:15.923000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_cltv_104
2025-04-05T15:21:15.923000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_cltv_104/test_framework.log
2025-04-05T15:21:15.923000Z TestFramework (ERROR): 
2025-04-05T15:21:15.923000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_cltv_104' to consolidate all logs
2025-04-05T15:21:15.923000Z TestFramework (ERROR): 
2025-04-05T15:21:15.923000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:15.923000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:15.923000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: feature_coinstatsindex.py ======

------- Stdout: -------
2025-04-05T15:20:52.401000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_coinstatsindex_61
2025-04-05T15:20:53.944000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_coinstatsindex.py", line 37, in run_test
    self._test_coin_stats_index()
  File "/work/test/functional/feature_coinstatsindex.py", line 65, in _test_coin_stats_index
    self.wallet.send_self_transfer(from_node=node)
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:53.995000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:54.097000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_coinstatsindex_61
2025-04-05T15:20:54.097000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_coinstatsindex_61/test_framework.log
2025-04-05T15:20:54.097000Z TestFramework (ERROR): 
2025-04-05T15:20:54.097000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_coinstatsindex_61' to consolidate all logs
2025-04-05T15:20:54.098000Z TestFramework (ERROR): 
2025-04-05T15:20:54.098000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:54.098000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:54.098000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: feature_csv_activation.py ======

------- Stdout: -------
2025-04-05T15:20:23.672000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_csv_activation_25
2025-04-05T15:20:24.058000Z TestFramework (INFO): Generate blocks in the past for coinbase outputs.
2025-04-05T15:20:25.035000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_csv_activation.py", line 244, in run_test
    bip68inputs.append(self.send_generic_input_tx(self.coinbase_blocks))
                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/feature_csv_activation.py", line 122, in send_generic_input_tx
    return self.miniwallet.send_self_transfer(
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:25.087000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:25.239000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_csv_activation_25
2025-04-05T15:20:25.239000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_csv_activation_25/test_framework.log
2025-04-05T15:20:25.239000Z TestFramework (ERROR): 
2025-04-05T15:20:25.239000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_csv_activation_25' to consolidate all logs
2025-04-05T15:20:25.239000Z TestFramework (ERROR): 
2025-04-05T15:20:25.239000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:25.239000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:25.239000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: feature_dersig.py ======

------- Stdout: -------
2025-04-05T15:21:12.330000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_dersig_105
2025-04-05T15:21:13.365000Z TestFramework (INFO): Mining 1250 blocks
2025-04-05T15:21:15.812000Z TestFramework (INFO): Test that blocks must now be at least version 3
2025-04-05T15:21:15.914000Z TestFramework (INFO): Test that transactions with non-DER signatures cannot appear in a block
2025-04-05T15:21:15.928000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_dersig.py", line 79, in run_test
    spendtx = self.create_tx(self.coinbase_txids[1])
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/feature_dersig.py", line 47, in create_tx
    return self.miniwallet.create_self_transfer(utxo_to_spend=utxo_to_spend)["tx"]
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:15.979000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:16.132000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_dersig_105
2025-04-05T15:21:16.132000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_dersig_105/test_framework.log
2025-04-05T15:21:16.132000Z TestFramework (ERROR): 
2025-04-05T15:21:16.132000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_dersig_105' to consolidate all logs
2025-04-05T15:21:16.132000Z TestFramework (ERROR): 
2025-04-05T15:21:16.132000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:16.132000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:16.132000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: feature_fastprune.py ======

------- Stdout: -------
2025-04-05T15:21:34.098000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_fastprune_242
2025-04-05T15:21:34.432000Z TestFramework (INFO): ensure that large blocks don't crash or freeze in -fastprune
2025-04-05T15:21:34.513000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/feature_fastprune.py", line 19, in run_test
    tx = wallet.create_self_transfer()["tx"]
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:34.565000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:34.666000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_fastprune_242
2025-04-05T15:21:34.666000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_fastprune_242/test_framework.log
2025-04-05T15:21:34.666000Z TestFramework (ERROR): 
2025-04-05T15:21:34.666000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/feature_fastprune_242' to consolidate all logs
2025-04-05T15:21:34.666000Z TestFramework (ERROR): 
2025-04-05T15:21:34.666000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:34.666000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:34.666000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: mempool_expiry.py ======

------- Stdout: -------
2025-04-05T15:21:28.267000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_expiry_188
2025-04-05T15:21:29.022000Z TestFramework (INFO): Test default mempool expiry timeout of 336 hours.
2025-04-05T15:21:29.023000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_expiry.py", line 120, in run_test
    self.test_transaction_expiry(DEFAULT_MEMPOOL_EXPIRY_HOURS)
  File "/work/test/functional/mempool_expiry.py", line 33, in test_transaction_expiry
    parent_txid = self.wallet.send_self_transfer(from_node=node)["txid"]
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:29.074000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:29.175000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_expiry_188
2025-04-05T15:21:29.175000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_expiry_188/test_framework.log
2025-04-05T15:21:29.175000Z TestFramework (ERROR): 
2025-04-05T15:21:29.175000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_expiry_188' to consolidate all logs
2025-04-05T15:21:29.175000Z TestFramework (ERROR): 
2025-04-05T15:21:29.175000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:29.175000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:29.175000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: mempool_limit.py ======

------- Stdout: -------
2025-04-05T15:20:41.940000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_limit_48
2025-04-05T15:20:42.292000Z TestFramework (INFO): Check that mempoolminfee is minrelaytxfee
2025-04-05T15:20:42.293000Z TestFramework (INFO): Fill the mempool until eviction is triggered and the mempoolminfee rises
2025-04-05T15:20:42.466000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_limit.py", line 165, in run_test
    fill_mempool(self, node, self.wallet)
  File "/work/test/functional/test_framework/util.py", line 590, in fill_mempool
    tx_to_be_evicted_id = miniwallet.send_self_transfer(
                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:42.517000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:42.618000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_limit_48
2025-04-05T15:20:42.618000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_limit_48/test_framework.log
2025-04-05T15:20:42.618000Z TestFramework (ERROR): 
2025-04-05T15:20:42.618000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_limit_48' to consolidate all logs
2025-04-05T15:20:42.618000Z TestFramework (ERROR): 
2025-04-05T15:20:42.618000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:42.618000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:42.619000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: mempool_packages.py ======

------- Stdout: -------
2025-04-05T15:21:28.674000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_packages_189
2025-04-05T15:21:29.279000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_packages.py", line 27, in run_test
    chain = self.wallet.send_self_transfer_chain(
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 445, in send_self_transfer_chain
    chain = self.create_self_transfer_chain(**kwargs)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 432, in create_self_transfer_chain
    tx = self.create_self_transfer(utxo_to_spend=chaintip_utxo)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:29.331000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:29.484000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_packages_189
2025-04-05T15:21:29.484000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_packages_189/test_framework.log
2025-04-05T15:21:29.484000Z TestFramework (ERROR): 
2025-04-05T15:21:29.484000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_packages_189' to consolidate all logs
2025-04-05T15:21:29.484000Z TestFramework (ERROR): 
2025-04-05T15:21:29.485000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:29.485000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:29.485000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: mempool_reorg.py ======

------- Stdout: -------
2025-04-05T15:21:29.006000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_reorg_190
2025-04-05T15:21:29.520000Z TestFramework (INFO): Add 4 coinbase utxos to the miniwallet
2025-04-05T15:21:29.531000Z TestFramework (INFO): Create three transactions spending from coinbase utxos: spend_1, spend_2, spend_3
2025-04-05T15:21:29.532000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_reorg.py", line 46, in run_test
    spend_1 = wallet.create_self_transfer(utxo_to_spend=utxo_1)
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:29.583000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:29.735000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_reorg_190
2025-04-05T15:21:29.735000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_reorg_190/test_framework.log
2025-04-05T15:21:29.735000Z TestFramework (ERROR): 
2025-04-05T15:21:29.736000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_reorg_190' to consolidate all logs
2025-04-05T15:21:29.736000Z TestFramework (ERROR): 
2025-04-05T15:21:29.736000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:29.736000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:29.736000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: mempool_resurrect.py ======

------- Stdout: -------
2025-04-05T15:21:34.862000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_resurrect_250
2025-04-05T15:21:35.204000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_resurrect.py", line 29, in run_test
    spends1_ids = [
                  ^
  File "/work/test/functional/mempool_resurrect.py", line 30, in <listcomp>
    wallet.send_self_transfer(from_node=node)["txid"] for _ in range(3)
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:35.255000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:35.357000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_resurrect_250
2025-04-05T15:21:35.357000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_resurrect_250/test_framework.log
2025-04-05T15:21:35.357000Z TestFramework (ERROR): 
2025-04-05T15:21:35.357000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_resurrect_250' to consolidate all logs
2025-04-05T15:21:35.357000Z TestFramework (ERROR): 
2025-04-05T15:21:35.357000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:35.357000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:35.357000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: mempool_spend_coinbase.py ======

------- Stdout: -------
2025-04-05T15:21:34.922000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_spend_coinbase_251
2025-04-05T15:21:35.313000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mempool_spend_coinbase.py", line 41, in run_test
    spend_mature_id = wallet.send_self_transfer(
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:35.364000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:35.515000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_spend_coinbase_251
2025-04-05T15:21:35.515000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_spend_coinbase_251/test_framework.log
2025-04-05T15:21:35.515000Z TestFramework (ERROR): 
2025-04-05T15:21:35.515000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mempool_spend_coinbase_251' to consolidate all logs
2025-04-05T15:21:35.516000Z TestFramework (ERROR): 
2025-04-05T15:21:35.516000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:35.516000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:35.516000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: mining_getblocktemplate_longpoll.py ======

------- Stdout: -------
2025-04-05T15:20:00.773000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mining_getblocktemplate_longpoll_15
2025-04-05T15:20:01.176000Z TestFramework (INFO): Test that longpollid doesn't change between successive getblocktemplate() invocations if nothing else happens
2025-04-05T15:20:02.192000Z TestFramework (INFO): Test that longpoll waits if we do nothing
2025-04-05T15:20:07.268000Z TestFramework (INFO): Test that longpoll will terminate if another node generates a block
2025-04-05T15:20:07.283000Z TestFramework (INFO): Test that longpoll will terminate if we generate a block ourselves
2025-04-05T15:20:07.296000Z TestFramework (INFO): Test that introducing a new transaction into the mempool will terminate the longpoll
2025-04-05T15:20:07.298000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mining_getblocktemplate_longpoll.py", line 106, in run_test
    miniwallets[0].send_self_transfer(
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:07.349000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:07.451000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mining_getblocktemplate_longpoll_15
2025-04-05T15:20:07.451000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mining_getblocktemplate_longpoll_15/test_framework.log
2025-04-05T15:20:07.451000Z TestFramework (ERROR): 
2025-04-05T15:20:07.452000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mining_getblocktemplate_longpoll_15' to consolidate all logs
2025-04-05T15:20:07.452000Z TestFramework (ERROR): 
2025-04-05T15:20:07.452000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:07.452000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:07.452000Z TestFramework (ERROR):
------- Stderr: -------
Exception in thread Thread-3:
Traceback (most recent call last):
  File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
    self.run()
  File "/work/test/functional/mining_getblocktemplate_longpoll.py", line 35, in run
    self.node.getblocktemplate({"longpollid": self.longpollid})
  File "/work/test/functional/test_framework/coverage.py", line 46, in __call__
    return_val = self.auth_service_proxy_instance.__call__(*args, **kwargs)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/authproxy.py", line 150, in __call__
    raise JSONRPCException(response["error"], status)
test_framework.authproxy.JSONRPCException: Shutting down (-9)
====== Bitcoin ABC functional tests with the next upgrade activated: mining_prioritisetransaction.py ======

------- Stdout: -------
2025-04-05T15:21:12.730000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mining_prioritisetransaction_107
2025-04-05T15:21:13.262000Z TestFramework (INFO): Test diamond-shape package with priority
2025-04-05T15:21:13.263000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/mining_prioritisetransaction.py", line 222, in run_test
    self.test_diamond()
  File "/work/test/functional/mining_prioritisetransaction.py", line 44, in test_diamond
    tx_o_a = self.wallet.send_self_transfer_multi(
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 294, in send_self_transfer_multi
    tx = self.create_self_transfer_multi(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:13.315000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:13.416000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mining_prioritisetransaction_107
2025-04-05T15:21:13.416000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mining_prioritisetransaction_107/test_framework.log
2025-04-05T15:21:13.417000Z TestFramework (ERROR): 
2025-04-05T15:21:13.417000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/mining_prioritisetransaction_107' to consolidate all logs
2025-04-05T15:21:13.417000Z TestFramework (ERROR): 
2025-04-05T15:21:13.417000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:13.417000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:13.417000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: p2p_1p1c_network.py ======

------- Stdout: -------
2025-04-05T15:20:42.734000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_1p1c_network_49
2025-04-05T15:20:43.513000Z TestFramework (INFO): Fill mempools with large transactions to raise mempool minimum feerates
2025-04-05T15:20:43.572000Z TestFramework (INFO): Fill the mempool until eviction is triggered and the mempoolminfee rises
2025-04-05T15:20:43.778000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_1p1c_network.py", line 151, in run_test
    self.raise_network_minfee()
  File "/work/test/functional/p2p_1p1c_network.py", line 34, in raise_network_minfee
    fill_mempool(self, self.nodes[0], filler_wallet)
  File "/work/test/functional/test_framework/util.py", line 590, in fill_mempool
    tx_to_be_evicted_id = miniwallet.send_self_transfer(
                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:43.829000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:43.933000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_1p1c_network_49
2025-04-05T15:20:43.933000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_1p1c_network_49/test_framework.log
2025-04-05T15:20:43.933000Z TestFramework (ERROR): 
2025-04-05T15:20:43.933000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_1p1c_network_49' to consolidate all logs
2025-04-05T15:20:43.933000Z TestFramework (ERROR): 
2025-04-05T15:20:43.933000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:43.933000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:43.933000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: p2p_blocksonly.py ======

------- Stdout: -------
2025-04-05T15:20:50.711000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_blocksonly_56
2025-04-05T15:20:51.098000Z TestFramework (INFO): Tests with node running in -blocksonly mode
2025-04-05T15:20:51.200000Z TestFramework (INFO): Check that txs from P2P are rejected and result in disconnect
2025-04-05T15:20:51.201000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_blocksonly.py", line 23, in run_test
    self.blocksonly_mode_tests()
  File "/work/test/functional/p2p_blocksonly.py", line 31, in blocksonly_mode_tests
    tx, txid, tx_hex = self.check_p2p_tx_violation()
                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/p2p_blocksonly.py", line 154, in check_p2p_tx_violation
    spendtx = self.miniwallet.create_self_transfer()
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:51.252000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:51.403000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_blocksonly_56
2025-04-05T15:20:51.403000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_blocksonly_56/test_framework.log
2025-04-05T15:20:51.403000Z TestFramework (ERROR): 
2025-04-05T15:20:51.403000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_blocksonly_56' to consolidate all logs
2025-04-05T15:20:51.403000Z TestFramework (ERROR): 
2025-04-05T15:20:51.403000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:51.403000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:51.403000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: p2p_feefilter.py ======

------- Stdout: -------
2025-04-05T15:21:12.731000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_feefilter_108
2025-04-05T15:21:13.396000Z TestFramework (INFO): Check that peers without forcerelay permission (default) get a feefilter message
2025-04-05T15:21:13.498000Z TestFramework (INFO): Check that peers with forcerelay permission do not get a feefilter message
2025-04-05T15:21:14.650000Z TestFramework (INFO): Test txs paying 0.2 sat/byte are received by test connection
2025-04-05T15:21:14.651000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_feefilter.py", line 63, in run_test
    self.test_feefilter()
  File "/work/test/functional/p2p_feefilter.py", line 95, in test_feefilter
    txids = [
            ^
  File "/work/test/functional/p2p_feefilter.py", line 96, in <listcomp>
    miniwallet.send_self_transfer(fee_rate=Decimal("2.00"), from_node=node1)[
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:14.702000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:14.854000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_feefilter_108
2025-04-05T15:21:14.854000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_feefilter_108/test_framework.log
2025-04-05T15:21:14.854000Z TestFramework (ERROR): 
2025-04-05T15:21:14.854000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_feefilter_108' to consolidate all logs
2025-04-05T15:21:14.854000Z TestFramework (ERROR): 
2025-04-05T15:21:14.854000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:14.854000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:14.854000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: p2p_filter.py ======

------- Stdout: -------
2025-04-05T15:21:12.731000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_filter_109
2025-04-05T15:21:13.270000Z TestFramework (INFO): Test filter size limits
2025-04-05T15:21:13.270000Z TestFramework (INFO): Check that too large filter is rejected
2025-04-05T15:21:13.322000Z TestFramework (INFO): Check that max size filter is accepted
2025-04-05T15:21:13.424000Z TestFramework (INFO): Check that filter with too many hash functions is rejected
2025-04-05T15:21:13.475000Z TestFramework (INFO): Check that filter with max hash functions is accepted
2025-04-05T15:21:13.525000Z TestFramework (INFO): Check that max size data element to add to the filter is accepted
2025-04-05T15:21:13.576000Z TestFramework (INFO): Check that too large data element to add to the filter is rejected
2025-04-05T15:21:13.677000Z TestFramework (INFO): Test BIP 37 for a node with fRelay = True (default)
2025-04-05T15:21:13.728000Z TestFramework (INFO): Check that we receive merkleblock and tx if the filter matches a tx in a block
2025-04-05T15:21:13.733000Z TestFramework (INFO): Check that we only receive a merkleblock if the filter does not match a tx in a block
2025-04-05T15:21:13.740000Z TestFramework (INFO): Check that we not receive a tx if the filter does not match a mempool tx
2025-04-05T15:21:13.745000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_filter.py", line 286, in run_test
    self.test_filter(filter_peer)
  File "/work/test/functional/p2p_filter.py", line 222, in test_filter
    self.wallet.send_to(
  File "/work/test/functional/test_framework/wallet.py", line 283, in send_to
    tx = self.create_self_transfer(fee_rate=0)["tx"]
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:13.796000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:14.198000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_filter_109
2025-04-05T15:21:14.198000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_filter_109/test_framework.log
2025-04-05T15:21:14.198000Z TestFramework (ERROR): 
2025-04-05T15:21:14.198000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_filter_109' to consolidate all logs
2025-04-05T15:21:14.198000Z TestFramework (ERROR): 
2025-04-05T15:21:14.198000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:14.198000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:14.198000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: p2p_leak_tx.py ======

------- Stdout: -------
2025-04-05T15:21:35.190000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_leak_tx_257
2025-04-05T15:21:35.641000Z TestFramework (INFO): Running test up to 100 times.
2025-04-05T15:21:35.641000Z TestFramework (INFO): Run repeat 1
2025-04-05T15:21:35.642000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_leak_tx.py", line 34, in run_test
    txid = miniwallet.send_self_transfer(from_node=gen_node)["txid"]
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:35.693000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:35.844000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_leak_tx_257
2025-04-05T15:21:35.844000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_leak_tx_257/test_framework.log
2025-04-05T15:21:35.844000Z TestFramework (ERROR): 
2025-04-05T15:21:35.844000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_leak_tx_257' to consolidate all logs
2025-04-05T15:21:35.844000Z TestFramework (ERROR): 
2025-04-05T15:21:35.845000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:35.845000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:35.845000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: p2p_net_deadlock.py ======

------- Stdout: -------
2025-04-05T15:21:01.507000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_net_deadlock_78
2025-04-05T15:21:03.117000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_net_deadlock.py", line 34, in run_test
    txs = [wallet.create_self_transfer()["tx"] for _ in range(4)]
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/p2p_net_deadlock.py", line 34, in <listcomp>
    txs = [wallet.create_self_transfer()["tx"] for _ in range(4)]
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:03.169000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:03.321000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_net_deadlock_78
2025-04-05T15:21:03.321000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_net_deadlock_78/test_framework.log
2025-04-05T15:21:03.321000Z TestFramework (ERROR): 
2025-04-05T15:21:03.321000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_net_deadlock_78' to consolidate all logs
2025-04-05T15:21:03.321000Z TestFramework (ERROR): 
2025-04-05T15:21:03.321000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:03.321000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:03.321000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: p2p_opportunistic_1p1c.py ======

------- Stdout: -------
2025-04-05T15:19:59.583000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_opportunistic_1p1c_0
2025-04-05T15:20:00.191000Z TestFramework (INFO): Fill the mempool until eviction is triggered and the mempoolminfee rises
2025-04-05T15:20:00.342000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_opportunistic_1p1c.py", line 462, in run_test
    fill_mempool(self, node, filler_wallet)
  File "/work/test/functional/test_framework/util.py", line 590, in fill_mempool
    tx_to_be_evicted_id = miniwallet.send_self_transfer(
                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:20:00.394000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:20:00.495000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_opportunistic_1p1c_0
2025-04-05T15:20:00.495000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_opportunistic_1p1c_0/test_framework.log
2025-04-05T15:20:00.495000Z TestFramework (ERROR): 
2025-04-05T15:20:00.495000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_opportunistic_1p1c_0' to consolidate all logs
2025-04-05T15:20:00.495000Z TestFramework (ERROR): 
2025-04-05T15:20:00.495000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:20:00.495000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:20:00.495000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: p2p_orphan_handling.py ======

------- Stdout: -------
2025-04-05T15:21:13.089000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_orphan_handling_110
2025-04-05T15:21:13.668000Z TestFramework (INFO): Test missing parents that arrive during delay are not requested
2025-04-05T15:21:13.674000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_orphan_handling.py", line 393, in run_test
    self.test_arrival_timing_orphan()
  File "/work/test/functional/p2p_orphan_handling.py", line 44, in wrapper
    func(self)
  File "/work/test/functional/p2p_orphan_handling.py", line 134, in test_arrival_timing_orphan
    tx_parent_arrives = self.wallet.create_self_transfer()
                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:13.725000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:13.826000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_orphan_handling_110
2025-04-05T15:21:13.826000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_orphan_handling_110/test_framework.log
2025-04-05T15:21:13.826000Z TestFramework (ERROR): 
2025-04-05T15:21:13.827000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_orphan_handling_110' to consolidate all logs
2025-04-05T15:21:13.827000Z TestFramework (ERROR): 
2025-04-05T15:21:13.827000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:13.827000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:13.827000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: p2p_tx_privacy.py ======

------- Stdout: -------
2025-04-05T15:21:03.445000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_tx_privacy_79
2025-04-05T15:21:03.990000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/p2p_tx_privacy.py", line 58, in run_test
    tx1 = self.wallet.create_self_transfer()["tx"]
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:04.041000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:04.192000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_tx_privacy_79
2025-04-05T15:21:04.192000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_tx_privacy_79/test_framework.log
2025-04-05T15:21:04.192000Z TestFramework (ERROR): 
2025-04-05T15:21:04.192000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/p2p_tx_privacy_79' to consolidate all logs
2025-04-05T15:21:04.192000Z TestFramework (ERROR): 
2025-04-05T15:21:04.192000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:04.192000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:04.192000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: rpc_blockchain.py ======

------- Stdout: -------
2025-04-05T15:20:54.240000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/rpc_blockchain_65
2025-04-05T15:20:54.549000Z TestFramework (INFO): Generate 200 blocks after the genesis block in ten-minute steps
2025-04-05T15:20:55.445000Z TestFramework (INFO): A block tip of more than MAX_FUTURE_BLOCK_TIME in the future raises an error
2025-04-05T15:20:55.610000Z TestFramework (INFO): A block tip of MAX_FUTURE_BLOCK_TIME in the future is fine
2025-04-05T15:20:56.265000Z TestFramework (INFO): Test getblockchaininfo
2025-04-05T15:20:56.974000Z TestFramework (INFO): Test getchaintxstats
2025-04-05T15:20:56.988000Z TestFramework (INFO): Test gettxoutsetinfo works for blockchain with just the genesis block
2025-04-05T15:20:57.020000Z TestFramework (INFO): Test gettxoutsetinfo returns the same result after invalidate/reconsider block
2025-04-05T15:20:57.126000Z TestFramework (INFO): Test gettxoutsetinfo hash_type option
2025-04-05T15:20:57.275000Z TestFramework (INFO): Test getblockheader
2025-04-05T15:20:57.279000Z TestFramework (INFO): Test getdifficulty
2025-04-05T15:20:57.279000Z TestFramework (INFO): Test getnetworkhashps
2025-04-05T15:20:57.280000Z TestFramework (INFO): Test stopping at height
2025-04-05T15:21:00.743000Z TestFramework (INFO): Test waitforblockheight
2025-04-05T15:21:00.998000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/rpc_blockchain.py", line 91, in run_test
    self._test_getblock_txfee()
  File "/work/test/functional/rpc_blockchain.py", line 544, in _test_getblock_txfee
    txid = miniwallet.send_self_transfer(fee_rate=fee_per_kb, from_node=node)[
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:01.052000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:01.154000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/rpc_blockchain_65
2025-04-05T15:21:01.154000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/rpc_blockchain_65/test_framework.log
2025-04-05T15:21:01.154000Z TestFramework (ERROR): 
2025-04-05T15:21:01.154000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/rpc_blockchain_65' to consolidate all logs
2025-04-05T15:21:01.154000Z TestFramework (ERROR): 
2025-04-05T15:21:01.154000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:01.154000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:01.154000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: rpc_gettransactionstatus.py ======

------- Stdout: -------
2025-04-05T15:21:36.366000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/rpc_gettransactionstatus_270
2025-04-05T15:21:36.951000Z TestFramework (INFO): Tx doesn't exist in any memory pool
2025-04-05T15:21:36.951000Z TestFramework (INFO): Tx is in the memory pool
2025-04-05T15:21:36.952000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/rpc_gettransactionstatus.py", line 35, in run_test
    mempool_tx = wallet.create_self_transfer(utxo_to_spend=utxo)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:37.003000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:37.113000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/rpc_gettransactionstatus_270
2025-04-05T15:21:37.113000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/rpc_gettransactionstatus_270/test_framework.log
2025-04-05T15:21:37.114000Z TestFramework (ERROR): 
2025-04-05T15:21:37.114000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/rpc_gettransactionstatus_270' to consolidate all logs
2025-04-05T15:21:37.114000Z TestFramework (ERROR): 
2025-04-05T15:21:37.114000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:37.114000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:37.114000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: rpc_packages.py ======

------- Stdout: -------
2025-04-05T15:21:22.514000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/rpc_packages_145
2025-04-05T15:21:22.959000Z TestFramework (INFO): Create some transactions
2025-04-05T15:21:22.960000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/rpc_packages.py", line 63, in run_test
    tx_hex = self.wallet.create_self_transfer(fee_rate=Decimal("100"))["hex"]
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:23.011000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:23.112000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/rpc_packages_145
2025-04-05T15:21:23.112000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/rpc_packages_145/test_framework.log
2025-04-05T15:21:23.112000Z TestFramework (ERROR): 
2025-04-05T15:21:23.112000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/rpc_packages_145' to consolidate all logs
2025-04-05T15:21:23.112000Z TestFramework (ERROR): 
2025-04-05T15:21:23.112000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:23.112000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:23.112000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: rpc_scantxoutset.py ======

------- Stdout: -------
2025-04-05T15:21:22.549000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/rpc_scantxoutset_146
2025-04-05T15:21:22.891000Z TestFramework (INFO): Test if we find coinbase outputs.
2025-04-05T15:21:22.896000Z TestFramework (INFO): Create UTXOs...
2025-04-05T15:21:22.900000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/rpc_scantxoutset.py", line 45, in run_test
    self.sendtodestination(spk, 2000)
  File "/work/test/functional/rpc_scantxoutset.py", line 25, in sendtodestination
    self.wallet.send_to(
  File "/work/test/functional/test_framework/wallet.py", line 283, in send_to
    tx = self.create_self_transfer(fee_rate=0)["tx"]
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:22.951000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:23.102000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/rpc_scantxoutset_146
2025-04-05T15:21:23.102000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/rpc_scantxoutset_146/test_framework.log
2025-04-05T15:21:23.102000Z TestFramework (ERROR): 
2025-04-05T15:21:23.102000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/rpc_scantxoutset_146' to consolidate all logs
2025-04-05T15:21:23.102000Z TestFramework (ERROR): 
2025-04-05T15:21:23.102000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:23.102000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:23.102000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests with the next upgrade activated: rpc_txoutproof.py ======

------- Stdout: -------
2025-04-05T15:21:31.079000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/rpc_txoutproof_206
2025-04-05T15:21:31.625000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/work/test/functional/test_framework/test_framework.py", line 149, in main
    self._run_test_internal()
  File "/work/test/functional/test_framework/test_framework.py", line 139, in _run_test_internal
    self.run_test()
  File "/work/test/functional/rpc_txoutproof.py", line 26, in run_test
    txid1 = miniwallet.send_self_transfer(from_node=self.nodes[0])["txid"]
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 269, in send_self_transfer
    tx = self.create_self_transfer(**kwargs)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 404, in create_self_transfer
    tx = self.create_self_transfer_multi(
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/wallet.py", line 353, in create_self_transfer_multi
    pad_tx(tx, target_size or 100, deterministic=True)
TypeError: pad_tx() got an unexpected keyword argument 'deterministic'
2025-04-05T15:21:31.677000Z TestFramework (INFO): Stopping nodes
2025-04-05T15:21:31.829000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/rpc_txoutproof_206
2025-04-05T15:21:31.829000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/rpc_txoutproof_206/test_framework.log
2025-04-05T15:21:31.829000Z TestFramework (ERROR): 
2025-04-05T15:21:31.829000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250405_151958/rpc_txoutproof_206' to consolidate all logs
2025-04-05T15:21:31.829000Z TestFramework (ERROR): 
2025-04-05T15:21:31.829000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-04-05T15:21:31.829000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-04-05T15:21:31.830000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: abc_mempool_chainedtx.py
Bitcoin ABC functional tests: abc_mining_rtt.py
Bitcoin ABC functional tests: abc_p2p_avalanche_cooldown.py
Bitcoin ABC functional tests: abc_p2p_avalanche_transaction_finalization.py
Bitcoin ABC functional tests: abc_p2p_avalanche_transaction_voting.py
Bitcoin ABC functional tests: feature_bip68_sequence.py
Bitcoin ABC functional tests: feature_cltv.py
Bitcoin ABC functional tests: feature_coinstatsindex.py
Bitcoin ABC functional tests: feature_csv_activation.py
Bitcoin ABC functional tests: feature_dersig.py
Bitcoin ABC functional tests: feature_fastprune.py
Bitcoin ABC functional tests: mempool_expiry.py
Bitcoin ABC functional tests: mempool_limit.py
Bitcoin ABC functional tests: mempool_packages.py
Bitcoin ABC functional tests: mempool_reorg.py
Bitcoin ABC functional tests: mempool_resurrect.py
Bitcoin ABC functional tests: mempool_spend_coinbase.py
Bitcoin ABC functional tests: mining_getblocktemplate_longpoll.py
Bitcoin ABC functional tests: mining_prioritisetransaction.py
Bitcoin ABC functional tests: p2p_1p1c_network.py
Bitcoin ABC functional tests: p2p_blocksonly.py
Bitcoin ABC functional tests: p2p_feefilter.py
Bitcoin ABC functional tests: p2p_filter.py
Bitcoin ABC functional tests: p2p_leak_tx.py
Bitcoin ABC functional tests: p2p_net_deadlock.py
Bitcoin ABC functional tests: p2p_opportunistic_1p1c.py
Bitcoin ABC functional tests: p2p_orphan_handling.py
Bitcoin ABC functional tests: p2p_tx_privacy.py
Bitcoin ABC functional tests: rpc_blockchain.py
Bitcoin ABC functional tests: rpc_gettransactionstatus.py
Bitcoin ABC functional tests: rpc_packages.py
Bitcoin ABC functional tests: rpc_scantxoutset.py
Bitcoin ABC functional tests: rpc_txoutproof.py
Bitcoin ABC functional tests with the next upgrade activated: abc_mempool_chainedtx.py
Bitcoin ABC functional tests with the next upgrade activated: abc_mining_rtt.py
Bitcoin ABC functional tests with the next upgrade activated: abc_p2p_avalanche_cooldown.py
Bitcoin ABC functional tests with the next upgrade activated: abc_p2p_avalanche_transaction_finalization.py
Bitcoin ABC functional tests with the next upgrade activated: abc_p2p_avalanche_transaction_voting.py
Bitcoin ABC functional tests with the next upgrade activated: feature_bip68_sequence.py
Bitcoin ABC functional tests with the next upgrade activated: feature_cltv.py
Bitcoin ABC functional tests with the next upgrade activated: feature_coinstatsindex.py
Bitcoin ABC functional tests with the next upgrade activated: feature_csv_activation.py
Bitcoin ABC functional tests with the next upgrade activated: feature_dersig.py
Bitcoin ABC functional tests with the next upgrade activated: feature_fastprune.py
Bitcoin ABC functional tests with the next upgrade activated: mempool_expiry.py
Bitcoin ABC functional tests with the next upgrade activated: mempool_limit.py
Bitcoin ABC functional tests with the next upgrade activated: mempool_packages.py
Bitcoin ABC functional tests with the next upgrade activated: mempool_reorg.py
Bitcoin ABC functional tests with the next upgrade activated: mempool_resurrect.py
Bitcoin ABC functional tests with the next upgrade activated: mempool_spend_coinbase.py
Bitcoin ABC functional tests with the next upgrade activated: mining_getblocktemplate_longpoll.py
Bitcoin ABC functional tests with the next upgrade activated: mining_prioritisetransaction.py
Bitcoin ABC functional tests with the next upgrade activated: p2p_1p1c_network.py
Bitcoin ABC functional tests with the next upgrade activated: p2p_blocksonly.py
Bitcoin ABC functional tests with the next upgrade activated: p2p_feefilter.py
Bitcoin ABC functional tests with the next upgrade activated: p2p_filter.py
Bitcoin ABC functional tests with the next upgrade activated: p2p_leak_tx.py
Bitcoin ABC functional tests with the next upgrade activated: p2p_net_deadlock.py
Bitcoin ABC functional tests with the next upgrade activated: p2p_opportunistic_1p1c.py
Bitcoin ABC functional tests with the next upgrade activated: p2p_orphan_handling.py
Bitcoin ABC functional tests with the next upgrade activated: p2p_tx_privacy.py
Bitcoin ABC functional tests with the next upgrade activated: rpc_blockchain.py
Bitcoin ABC functional tests with the next upgrade activated: rpc_gettransactionstatus.py
Bitcoin ABC functional tests with the next upgrade activated: rpc_packages.py
Bitcoin ABC functional tests with the next upgrade activated: rpc_scantxoutset.py
Bitcoin ABC functional tests with the next upgrade activated: rpc_txoutproof.py

PiRK edited the test plan for this revision. (Show Details)
PiRK planned changes to this revision.Sat, Apr 5, 15:44
PiRK added inline comments.
test/functional/feature_bip68_sequence.py
466

the serialization round-trip before padding was pointless. Good thing sign_tx was previously padding the tx before it was serialized, otherwise sendrawtransaction(tx2_raw) would have failed

PiRK requested review of this revision.Sat, Apr 5, 15:47