Page MenuHomePhabricator

[chronik, chronik-client, ecash-agora, ecash-lib, cashtab, ecash-herald, token-server, faucet, mock-chronik-client] Improve names of keys and params that expect satoshis and atoms (aka base tokens)
Needs ReviewPublic

Authored by bytesofman on Fri, Feb 7, 22:31.

Details

Reviewers
tobias_ruck
Group Reviewers
Restricted Project
Summary

1. Change the "value" key (which stores satoshis as a number) to "sats", which stores satoshis as bigint

The "value" does not really make sense; this is always "satoshis". It's extra confusing as satoshis can look quite close to XEC from a visual check, but in reality a factor of 100 is quite a difference indeed. Although the type "number" is ok, since the supply of satoshis is below JS max safe number, it is nice to use bigint since we then know it should always be an int.

2. Change the "amount" key (which stores base tokens as a string) to "atoms", which stores base tokens as bigint

"amount" is also an ambiguous key. Is it the decimalized amount of a token? or base tokens? what are base tokens anyway? We introduce the term "atoms" to describe the smallest unit of a token. Store as a bigint as this is always an int and also can be larger than JS safest integer. Decimalized amounts are usually a string, so keeping this bigint further distinguishes it from decimalized amounts.

We also update tokenBurnAmount -> tokenBurnAtoms, intentionalBurn -> intentionalBurnAtoms and change their type from string to bigint. We update error msgs to replace "base tokens" with "atoms"

The ecash-agora library uses the term "Token" in many places when instead what is meant is "atoms." We correct this.

We combine the changes here since

  1. These changes are related
  2. Any part of the changes here would itself be a breaking change
  3. CI allows us to confirm a proper implementation

It is not possible to do this incrementally as we need CI to confirm a correct implementation, and breaking changes to the libs must be implemented in the same diff. The diff history here loosely follows "one place at a time" implementation.

Goal here is to improve speed of development going forward. This ambiguity is something I have tripped over often in building apps, esp implementing ecash-agora in Cashtab (token vs base tokens, satoshis, nanosatoshis per token actually is nanosatoshis per atom, etc).

Looking to get this in before getting a strongly typed wallet library into the monorepo, which will be implemented in Cashtab to get rid of...a lot of spaghetti supporting tx building and wallet mgmt / migrations.

Note: not implemented in the Rust analogue to chronik-client. It should be implemented there as well. I'm not sure what our progress is like on getting that lib into the monorepo.

Test Plan

judgment call on the new names and definitions, CI

Cashtab migration can be tested in prod-like env at https://cashtab-local-dev.netlify.app/

Event Timeline

There are a very large number of changes, so older changes are hidden. Show Older Changes

Failed tests logs:

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

------- Stdout: -------
2025-02-08T18:10:23.236000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_block_txs_162
2025-02-08T18:10:23.955000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_block_txs.py", line 92, in run_test
    txs=[genesis_cb_tx()],
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T18:10:24.006000Z TestFramework (INFO): Stopping nodes
2025-02-08T18:10:24.207000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_block_txs_162
2025-02-08T18:10:24.207000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_block_txs_162/test_framework.log
2025-02-08T18:10:24.207000Z TestFramework (ERROR): 
2025-02-08T18:10:24.208000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_block_txs_162' to consolidate all logs
2025-02-08T18:10:24.208000Z TestFramework (ERROR): 
2025-02-08T18:10:24.208000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T18:10:24.208000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T18:10:24.208000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_disable_token_index.py ======

------- Stdout: -------
2025-02-08T18:10:13.343000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_disable_token_index_119
2025-02-08T18:10:14.019000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_disable_token_index.py", line 72, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T18:10:14.071000Z TestFramework (INFO): Stopping nodes
2025-02-08T18:10:14.172000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_disable_token_index_119
2025-02-08T18:10:14.172000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_disable_token_index_119/test_framework.log
2025-02-08T18:10:14.172000Z TestFramework (ERROR): 
2025-02-08T18:10:14.172000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_disable_token_index_119' to consolidate all logs
2025-02-08T18:10:14.172000Z TestFramework (ERROR): 
2025-02-08T18:10:14.172000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T18:10:14.172000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T18:10:14.173000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_pause.py ======

------- Stdout: -------
2025-02-08T18:10:24.356000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_pause_167
2025-02-08T18:10:24.978000Z TestFramework (INFO): Restart to allow pause
2025-02-08T18:10:25.433000Z TestFramework (INFO): Generate coin + mature for testing
2025-02-08T18:10:25.548000Z TestFramework (INFO): Pause Chronik indexing
2025-02-08T18:10:25.549000Z TestFramework (INFO): Send using P2P network
2025-02-08T18:10:25.600000Z TestFramework (INFO): Tx not yet picked up by chronik
2025-02-08T18:10:25.701000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T18:10:25.702000Z TestFramework (INFO): Chronik has now indexed the tx
2025-02-08T18:10:25.702000Z TestFramework (INFO): Pause Chronik indexing for block processing
2025-02-08T18:10:25.703000Z TestFramework (INFO): Create block with conflicting tx
2025-02-08T18:10:25.804000Z TestFramework (INFO): Block not indexed yet
2025-02-08T18:10:25.905000Z TestFramework (INFO): Chronik still believes the old tx exists
2025-02-08T18:10:25.906000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T18:10:25.907000Z TestFramework (INFO): Block now indexed and tx conflict resolved
2025-02-08T18:10:25.908000Z TestFramework (INFO): Pause Chronik for reorg
2025-02-08T18:10:25.908000Z TestFramework (INFO): Reorg last block by mining two blocks
2025-02-08T18:10:26.010000Z TestFramework (INFO): Reorg returns tx to mempool
2025-02-08T18:10:26.010000Z TestFramework (INFO): Chronik still thinks blockA exists
2025-02-08T18:10:26.111000Z TestFramework (INFO): Add block that mines the tx
2025-02-08T18:10:26.213000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T18:10:26.215000Z 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/chronik_pause.py", line 160, in run_test
    assert_equal(tx_proto.inputs[0].value, coinvalue)
                 ^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'TxInput' object has no attribute 'value'
2025-02-08T18:10:26.267000Z TestFramework (INFO): Stopping nodes
2025-02-08T18:10:26.368000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_pause_167
2025-02-08T18:10:26.368000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_pause_167/test_framework.log
2025-02-08T18:10:26.368000Z TestFramework (ERROR): 
2025-02-08T18:10:26.368000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_pause_167' to consolidate all logs
2025-02-08T18:10:26.368000Z TestFramework (ERROR): 
2025-02-08T18:10:26.368000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T18:10:26.368000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T18:10:26.368000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_confirmed_txs.py ======

------- Stdout: -------
2025-02-08T18:09:49.787000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_script_confirmed_txs_66
2025-02-08T18:09:50.513000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_confirmed_txs.py", line 124, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T18:09:50.565000Z TestFramework (INFO): Stopping nodes
2025-02-08T18:09:50.716000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_script_confirmed_txs_66
2025-02-08T18:09:50.716000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_script_confirmed_txs_66/test_framework.log
2025-02-08T18:09:50.716000Z TestFramework (ERROR): 
2025-02-08T18:09:50.716000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_script_confirmed_txs_66' to consolidate all logs
2025-02-08T18:09:50.716000Z TestFramework (ERROR): 
2025-02-08T18:09:50.716000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T18:09:50.716000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T18:09:50.716000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_history.py ======

------- Stdout: -------
2025-02-08T18:09:54.581000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_script_history_75
2025-02-08T18:09:55.300000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_history.py", line 127, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T18:09:55.302000Z TestFramework (INFO): Stopping nodes
2025-02-08T18:09:55.403000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_script_history_75
2025-02-08T18:09:55.403000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_script_history_75/test_framework.log
2025-02-08T18:09:55.403000Z TestFramework (ERROR): 
2025-02-08T18:09:55.403000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_script_history_75' to consolidate all logs
2025-02-08T18:09:55.403000Z TestFramework (ERROR): 
2025-02-08T18:09:55.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-02-08T18:09:55.403000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T18:09:55.403000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py ======

------- Stdout: -------
2025-02-08T18:10:24.664000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_script_unconfirmed_txs_170
2025-02-08T18:10:25.522000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_unconfirmed_txs.py", line 151, in run_test
    pb.TxInput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxInput has no "value" field.
2025-02-08T18:10:25.574000Z TestFramework (INFO): Stopping nodes
2025-02-08T18:10:25.675000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_script_unconfirmed_txs_170
2025-02-08T18:10:25.675000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_script_unconfirmed_txs_170/test_framework.log
2025-02-08T18:10:25.675000Z TestFramework (ERROR): 
2025-02-08T18:10:25.675000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_script_unconfirmed_txs_170' to consolidate all logs
2025-02-08T18:10:25.675000Z TestFramework (ERROR): 
2025-02-08T18:10:25.675000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T18:10:25.675000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T18:10:25.675000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_utxos.py ======

------- Stdout: -------
2025-02-08T18:10:34.173000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_script_utxos_233
2025-02-08T18:10:34.889000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_utxos.py", line 91, in run_test
    pb.ScriptUtxo(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message ScriptUtxo has no "value" field.
2025-02-08T18:10:34.940000Z TestFramework (INFO): Stopping nodes
2025-02-08T18:10:35.092000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_script_utxos_233
2025-02-08T18:10:35.092000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_script_utxos_233/test_framework.log
2025-02-08T18:10:35.092000Z TestFramework (ERROR): 
2025-02-08T18:10:35.092000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_script_utxos_233' to consolidate all logs
2025-02-08T18:10:35.092000Z TestFramework (ERROR): 
2025-02-08T18:10:35.092000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T18:10:35.092000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T18:10:35.092000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_scripthash.py ======

------- Stdout: -------
2025-02-08T18:10:14.300000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_scripthash_121
2025-02-08T18:10:15.373000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_scripthash.py", line 51, in run_test
    self.test_valid_requests()
  File "/work/test/functional/chronik_scripthash.py", line 102, in test_valid_requests
    txs=[genesis_cb_tx()], num_pages=1, num_txs=1
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T18:10:15.425000Z TestFramework (INFO): Stopping nodes
2025-02-08T18:10:15.576000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_scripthash_121
2025-02-08T18:10:15.576000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_scripthash_121/test_framework.log
2025-02-08T18:10:15.576000Z TestFramework (ERROR): 
2025-02-08T18:10:15.576000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_scripthash_121' to consolidate all logs
2025-02-08T18:10:15.577000Z TestFramework (ERROR): 
2025-02-08T18:10:15.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-02-08T18:10:15.577000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T18:10:15.577000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_alp.py ======

------- Stdout: -------
2025-02-08T18:10:14.449000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_alp_122
2025-02-08T18:10:15.743000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_alp.py", line 100, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T18:10:15.795000Z TestFramework (INFO): Stopping nodes
2025-02-08T18:10:15.896000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_alp_122
2025-02-08T18:10:15.896000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_alp_122/test_framework.log
2025-02-08T18:10:15.896000Z TestFramework (ERROR): 
2025-02-08T18:10:15.897000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_alp_122' to consolidate all logs
2025-02-08T18:10:15.897000Z TestFramework (ERROR): 
2025-02-08T18:10:15.897000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T18:10:15.897000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T18:10:15.897000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_broadcast_txs.py ======

------- Stdout: -------
2025-02-08T18:10:34.613000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_broadcast_txs_235
2025-02-08T18:10:35.378000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_broadcast_txs.py", line 76, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T18:10:35.430000Z TestFramework (INFO): Stopping nodes
2025-02-08T18:10:35.631000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_broadcast_txs_235
2025-02-08T18:10:35.631000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_broadcast_txs_235/test_framework.log
2025-02-08T18:10:35.632000Z TestFramework (ERROR): 
2025-02-08T18:10:35.632000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_broadcast_txs_235' to consolidate all logs
2025-02-08T18:10:35.632000Z TestFramework (ERROR): 
2025-02-08T18:10:35.632000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T18:10:35.632000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T18:10:35.632000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_burn.py ======

------- Stdout: -------
2025-02-08T18:10:34.612000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_burn_236
2025-02-08T18:10:35.366000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_burn.py", line 92, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T18:10:35.418000Z TestFramework (INFO): Stopping nodes
2025-02-08T18:10:35.520000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_burn_236
2025-02-08T18:10:35.520000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_burn_236/test_framework.log
2025-02-08T18:10:35.520000Z TestFramework (ERROR): 
2025-02-08T18:10:35.520000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_burn_236' to consolidate all logs
2025-02-08T18:10:35.520000Z TestFramework (ERROR): 
2025-02-08T18:10:35.520000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T18:10:35.520000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T18:10:35.520000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_id_group.py ======

------- Stdout: -------
2025-02-08T18:10:24.820000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_id_group_172
2025-02-08T18:10:25.675000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_id_group.py", line 95, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T18:10:25.727000Z TestFramework (INFO): Stopping nodes
2025-02-08T18:10:25.828000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_id_group_172
2025-02-08T18:10:25.828000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_id_group_172/test_framework.log
2025-02-08T18:10:25.828000Z TestFramework (ERROR): 
2025-02-08T18:10:25.828000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_id_group_172' to consolidate all logs
2025-02-08T18:10:25.828000Z TestFramework (ERROR): 
2025-02-08T18:10:25.828000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T18:10:25.828000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T18:10:25.828000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_script_group.py ======

------- Stdout: -------
2025-02-08T18:10:34.714000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_script_group_238
2025-02-08T18:10:35.442000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_script_group.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T18:10:35.494000Z TestFramework (INFO): Stopping nodes
2025-02-08T18:10:35.645000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_script_group_238
2025-02-08T18:10:35.645000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_script_group_238/test_framework.log
2025-02-08T18:10:35.645000Z TestFramework (ERROR): 
2025-02-08T18:10:35.645000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_script_group_238' to consolidate all logs
2025-02-08T18:10:35.645000Z TestFramework (ERROR): 
2025-02-08T18:10:35.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-02-08T18:10:35.646000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T18:10:35.646000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_fungible.py ======

------- Stdout: -------
2025-02-08T18:10:34.888000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_slp_fungible_239
2025-02-08T18:10:35.843000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_fungible.py", line 80, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T18:10:35.895000Z TestFramework (INFO): Stopping nodes
2025-02-08T18:10:35.996000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_slp_fungible_239
2025-02-08T18:10:35.996000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_slp_fungible_239/test_framework.log
2025-02-08T18:10:35.996000Z TestFramework (ERROR): 
2025-02-08T18:10:35.996000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_slp_fungible_239' to consolidate all logs
2025-02-08T18:10:35.997000Z TestFramework (ERROR): 
2025-02-08T18:10:35.997000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T18:10:35.997000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T18:10:35.997000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py ======

------- Stdout: -------
2025-02-08T18:10:25.022000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_slp_mint_vault_173
2025-02-08T18:10:25.869000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_mint_vault.py", line 119, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T18:10:25.920000Z TestFramework (INFO): Stopping nodes
2025-02-08T18:10:26.022000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_slp_mint_vault_173
2025-02-08T18:10:26.022000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_slp_mint_vault_173/test_framework.log
2025-02-08T18:10:26.022000Z TestFramework (ERROR): 
2025-02-08T18:10:26.022000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_slp_mint_vault_173' to consolidate all logs
2025-02-08T18:10:26.022000Z TestFramework (ERROR): 
2025-02-08T18:10:26.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-02-08T18:10:26.022000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T18:10:26.022000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_nft1.py ======

------- Stdout: -------
2025-02-08T18:10:35.173000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_slp_nft1_240
2025-02-08T18:10:36.129000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_nft1.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T18:10:36.181000Z TestFramework (INFO): Stopping nodes
2025-02-08T18:10:36.282000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_slp_nft1_240
2025-02-08T18:10:36.282000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_slp_nft1_240/test_framework.log
2025-02-08T18:10:36.282000Z TestFramework (ERROR): 
2025-02-08T18:10:36.282000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_token_slp_nft1_240' to consolidate all logs
2025-02-08T18:10:36.282000Z TestFramework (ERROR): 
2025-02-08T18:10:36.282000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T18:10:36.283000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T18:10:36.283000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_tx.py ======

------- Stdout: -------
2025-02-08T18:10:25.104000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_tx_174
2025-02-08T18:10:25.821000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_tx.py", line 64, in run_test
    assert_equal(chronik.tx(GENESIS_CB_TXID).ok(), genesis_cb_tx())
                                                   ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T18:10:25.873000Z TestFramework (INFO): Stopping nodes
2025-02-08T18:10:26.024000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_tx_174
2025-02-08T18:10:26.024000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_tx_174/test_framework.log
2025-02-08T18:10:26.024000Z TestFramework (ERROR): 
2025-02-08T18:10:26.024000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_tx_174' to consolidate all logs
2025-02-08T18:10:26.024000Z TestFramework (ERROR): 
2025-02-08T18:10:26.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-02-08T18:10:26.024000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T18:10:26.024000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_ws.py ======

------- Stdout: -------
2025-02-08T18:08:41.110000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_ws_13
2025-02-08T18:08:57.469000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_ws.py", line 120, in run_test
    coinbase_data = coinbase_data_from_block(tip)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/chronik_ws.py", line 116, in coinbase_data_from_block
    return pb.CoinbaseData(
           ^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 535, in init
    copy.add(**val)
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/containers.py", line 276, in add
    new_element = self._message_descriptor._concrete_class(**kwargs)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T18:08:57.528000Z TestFramework (INFO): Stopping nodes
2025-02-08T18:08:57.630000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_ws_13
2025-02-08T18:08:57.630000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_ws_13/test_framework.log
2025-02-08T18:08:57.630000Z TestFramework (ERROR): 
2025-02-08T18:08:57.630000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_180814/chronik_ws_13' to consolidate all logs
2025-02-08T18:08:57.630000Z TestFramework (ERROR): 
2025-02-08T18:08:57.630000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T18:08:57.630000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T18:08:57.630000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: chronik_block_txs.py
Bitcoin ABC functional tests: chronik_disable_token_index.py
Bitcoin ABC functional tests: chronik_pause.py
Bitcoin ABC functional tests: chronik_script_confirmed_txs.py
Bitcoin ABC functional tests: chronik_script_history.py
Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py
Bitcoin ABC functional tests: chronik_script_utxos.py
Bitcoin ABC functional tests: chronik_scripthash.py
Bitcoin ABC functional tests: chronik_token_alp.py
Bitcoin ABC functional tests: chronik_token_broadcast_txs.py
Bitcoin ABC functional tests: chronik_token_burn.py
Bitcoin ABC functional tests: chronik_token_id_group.py
Bitcoin ABC functional tests: chronik_token_script_group.py
Bitcoin ABC functional tests: chronik_token_slp_fungible.py
Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py
Bitcoin ABC functional tests: chronik_token_slp_nft1.py
Bitcoin ABC functional tests: chronik_tx.py
Bitcoin ABC functional tests: chronik_ws.py

Tail of the build log:

/work/modules/chronik-client /work/abc-ci-builds/cashtab-tests

> chronik-client@3.0.0 prepublish
> npm run build


> chronik-client@3.0.0 build
> tsc


added 265 packages, and audited 267 packages in 5s

48 packages are looking for funding
  run `npm fund` for details

5 vulnerabilities (3 moderate, 2 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> chronik-client@3.0.0 build
> tsc

/work/modules/mock-chronik-client /work/abc-ci-builds/cashtab-tests
npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm warn deprecated glob@8.1.0: Glob versions prior to v9 are no longer supported
npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.

added 349 packages, and audited 352 packages in 2s

60 packages are looking for funding
  run `npm fund` for details

1 high severity vulnerability

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

> mock-chronik-client@2.1.3 build
> tsc

mocks/index.ts(31,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'ScriptUtxo'.
mocks/index.ts(39,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'Utxo'.
mocks/index.ts(91,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(105,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxInput'.
mocks/index.ts(113,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(129,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(146,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(156,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(182,17): error TS2353: Object literal may only specify known properties, and 'actualBurnAmount' does not exist in type 'TokenEntry'.
Build cashtab-tests failed with exit code 2

Tail of the build log:

/work/modules/chronik-client /work/abc-ci-builds/token-server-tests

> chronik-client@3.0.0 prepublish
> npm run build


> chronik-client@3.0.0 build
> tsc


added 265 packages, and audited 267 packages in 5s

48 packages are looking for funding
  run `npm fund` for details

5 vulnerabilities (3 moderate, 2 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> chronik-client@3.0.0 build
> tsc

/work/modules/mock-chronik-client /work/abc-ci-builds/token-server-tests
npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm warn deprecated glob@8.1.0: Glob versions prior to v9 are no longer supported
npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.

added 349 packages, and audited 352 packages in 2s

60 packages are looking for funding
  run `npm fund` for details

1 high severity vulnerability

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

> mock-chronik-client@2.1.3 build
> tsc

mocks/index.ts(31,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'ScriptUtxo'.
mocks/index.ts(39,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'Utxo'.
mocks/index.ts(91,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(105,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxInput'.
mocks/index.ts(113,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(129,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(146,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(156,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(182,17): error TS2353: Object literal may only specify known properties, and 'actualBurnAmount' does not exist in type 'TokenEntry'.
Build token-server-tests failed with exit code 2

Tail of the build log:

/work/modules/chronik-client /work/abc-ci-builds/ecash-herald-tests

> chronik-client@3.0.0 prepublish
> npm run build


> chronik-client@3.0.0 build
> tsc


added 265 packages, and audited 267 packages in 5s

48 packages are looking for funding
  run `npm fund` for details

5 vulnerabilities (3 moderate, 2 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> chronik-client@3.0.0 build
> tsc

/work/modules/mock-chronik-client /work/abc-ci-builds/ecash-herald-tests
npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm warn deprecated glob@8.1.0: Glob versions prior to v9 are no longer supported
npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.

added 349 packages, and audited 352 packages in 2s

60 packages are looking for funding
  run `npm fund` for details

1 high severity vulnerability

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

> mock-chronik-client@2.1.3 build
> tsc

mocks/index.ts(31,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'ScriptUtxo'.
mocks/index.ts(39,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'Utxo'.
mocks/index.ts(91,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(105,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxInput'.
mocks/index.ts(113,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(129,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(146,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(156,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(182,17): error TS2353: Object literal may only specify known properties, and 'actualBurnAmount' does not exist in type 'TokenEntry'.
Build ecash-herald-tests failed with exit code 2

Failed tests logs:

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

------- Stdout: -------
2025-02-08T23:05:11.858000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250208_230508/abc_p2p_getavaaddr_5
2025-02-08T23:06:17.650000Z TestFramework.utils (ERROR): wait_until() failed. Predicate: ''''
        def test_function():
            if check_connected:
                assert self.is_connected
            return test_function_in()
'''
2025-02-08T23:06:17.650000Z TestFramework (ERROR): Assertion failed
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_getavaaddr.py", line 554, in run_test
    self.getavaaddr_interval_test()
  File "/work/test/functional/abc_p2p_getavaaddr.py", line 173, in getavaaddr_interval_test
    requester.wait_until(requester.addr_received)
  File "/work/test/functional/test_framework/p2p.py", line 582, in wait_until
    wait_until_helper(
  File "/work/test/functional/test_framework/util.py", line 296, in wait_until_helper
    raise AssertionError(
AssertionError: Predicate ''''
        def test_function():
            if check_connected:
                assert self.is_connected
            return test_function_in()
''' not true after 60.0 seconds
2025-02-08T23:06:17.701000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:06:17.953000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250208_230508/abc_p2p_getavaaddr_5
2025-02-08T23:06:17.953000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250208_230508/abc_p2p_getavaaddr_5/test_framework.log
2025-02-08T23:06:17.953000Z TestFramework (ERROR): 
2025-02-08T23:06:17.954000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-debug/test/tmp/test_runner_₿₵_🏃_20250208_230508/abc_p2p_getavaaddr_5' to consolidate all logs
2025-02-08T23:06:17.954000Z TestFramework (ERROR): 
2025-02-08T23:06:17.954000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:06:17.954000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:06:17.954000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: abc_p2p_getavaaddr.py

Failed tests logs:

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

------- Stdout: -------
2025-02-08T23:16:56.666000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_block_txs_162
2025-02-08T23:16:57.638000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_block_txs.py", line 92, in run_test
    txs=[genesis_cb_tx()],
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:16:57.690000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:16:57.841000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_block_txs_162
2025-02-08T23:16:57.841000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_block_txs_162/test_framework.log
2025-02-08T23:16:57.841000Z TestFramework (ERROR): 
2025-02-08T23:16:57.841000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_block_txs_162' to consolidate all logs
2025-02-08T23:16:57.841000Z TestFramework (ERROR): 
2025-02-08T23:16:57.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-02-08T23:16:57.841000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:16:57.841000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_disable_token_index.py ======

------- Stdout: -------
2025-02-08T23:16:46.630000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_disable_token_index_119
2025-02-08T23:16:47.300000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_disable_token_index.py", line 72, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:16:47.351000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:16:47.452000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_disable_token_index_119
2025-02-08T23:16:47.452000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_disable_token_index_119/test_framework.log
2025-02-08T23:16:47.452000Z TestFramework (ERROR): 
2025-02-08T23:16:47.452000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_disable_token_index_119' to consolidate all logs
2025-02-08T23:16:47.452000Z TestFramework (ERROR): 
2025-02-08T23:16:47.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-02-08T23:16:47.452000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:16:47.452000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_pause.py ======

------- Stdout: -------
2025-02-08T23:16:57.760000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_pause_167
2025-02-08T23:16:58.446000Z TestFramework (INFO): Restart to allow pause
2025-02-08T23:16:58.901000Z TestFramework (INFO): Generate coin + mature for testing
2025-02-08T23:16:58.983000Z TestFramework (INFO): Pause Chronik indexing
2025-02-08T23:16:58.984000Z TestFramework (INFO): Send using P2P network
2025-02-08T23:16:59.035000Z TestFramework (INFO): Tx not yet picked up by chronik
2025-02-08T23:16:59.136000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T23:16:59.137000Z TestFramework (INFO): Chronik has now indexed the tx
2025-02-08T23:16:59.138000Z TestFramework (INFO): Pause Chronik indexing for block processing
2025-02-08T23:16:59.138000Z TestFramework (INFO): Create block with conflicting tx
2025-02-08T23:16:59.240000Z TestFramework (INFO): Block not indexed yet
2025-02-08T23:16:59.341000Z TestFramework (INFO): Chronik still believes the old tx exists
2025-02-08T23:16:59.341000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T23:16:59.342000Z TestFramework (INFO): Block now indexed and tx conflict resolved
2025-02-08T23:16:59.343000Z TestFramework (INFO): Pause Chronik for reorg
2025-02-08T23:16:59.344000Z TestFramework (INFO): Reorg last block by mining two blocks
2025-02-08T23:16:59.446000Z TestFramework (INFO): Reorg returns tx to mempool
2025-02-08T23:16:59.447000Z TestFramework (INFO): Chronik still thinks blockA exists
2025-02-08T23:16:59.549000Z TestFramework (INFO): Add block that mines the tx
2025-02-08T23:16:59.650000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T23:16:59.652000Z 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/chronik_pause.py", line 160, in run_test
    assert_equal(tx_proto.inputs[0].value, coinvalue)
                 ^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'TxInput' object has no attribute 'value'
2025-02-08T23:16:59.704000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:16:59.806000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_pause_167
2025-02-08T23:16:59.806000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_pause_167/test_framework.log
2025-02-08T23:16:59.806000Z TestFramework (ERROR): 
2025-02-08T23:16:59.806000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_pause_167' to consolidate all logs
2025-02-08T23:16:59.806000Z TestFramework (ERROR): 
2025-02-08T23:16:59.806000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:16:59.806000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:16:59.806000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_confirmed_txs.py ======

------- Stdout: -------
2025-02-08T23:16:23.068000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_script_confirmed_txs_66
2025-02-08T23:16:23.809000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_confirmed_txs.py", line 124, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:16:23.811000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:16:23.912000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_script_confirmed_txs_66
2025-02-08T23:16:23.912000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_script_confirmed_txs_66/test_framework.log
2025-02-08T23:16:23.912000Z TestFramework (ERROR): 
2025-02-08T23:16:23.912000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_script_confirmed_txs_66' to consolidate all logs
2025-02-08T23:16:23.912000Z TestFramework (ERROR): 
2025-02-08T23:16:23.912000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:16:23.912000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:16:23.912000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_history.py ======

------- Stdout: -------
2025-02-08T23:16:28.789000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_script_history_75
2025-02-08T23:16:29.482000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_history.py", line 127, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:16:29.534000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:16:29.735000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_script_history_75
2025-02-08T23:16:29.736000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_script_history_75/test_framework.log
2025-02-08T23:16:29.736000Z TestFramework (ERROR): 
2025-02-08T23:16:29.736000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_script_history_75' to consolidate all logs
2025-02-08T23:16:29.736000Z TestFramework (ERROR): 
2025-02-08T23:16: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-02-08T23:16:29.736000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:16:29.736000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py ======

------- Stdout: -------
2025-02-08T23:16:58.022000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_script_unconfirmed_txs_170
2025-02-08T23:16:58.876000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_unconfirmed_txs.py", line 151, in run_test
    pb.TxInput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxInput has no "value" field.
2025-02-08T23:16:58.927000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:16:59.028000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_script_unconfirmed_txs_170
2025-02-08T23:16:59.028000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_script_unconfirmed_txs_170/test_framework.log
2025-02-08T23:16:59.028000Z TestFramework (ERROR): 
2025-02-08T23:16:59.028000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_script_unconfirmed_txs_170' to consolidate all logs
2025-02-08T23:16:59.028000Z TestFramework (ERROR): 
2025-02-08T23:16:59.028000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:16:59.028000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:16:59.028000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_utxos.py ======

------- Stdout: -------
2025-02-08T23:17:06.563000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_script_utxos_233
2025-02-08T23:17:07.277000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_utxos.py", line 91, in run_test
    pb.ScriptUtxo(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message ScriptUtxo has no "value" field.
2025-02-08T23:17:07.329000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:17:07.881000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_script_utxos_233
2025-02-08T23:17:07.882000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_script_utxos_233/test_framework.log
2025-02-08T23:17:07.882000Z TestFramework (ERROR): 
2025-02-08T23:17:07.883000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_script_utxos_233' to consolidate all logs
2025-02-08T23:17:07.883000Z TestFramework (ERROR): 
2025-02-08T23:17:07.883000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:17:07.884000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:17:07.884000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_scripthash.py ======

------- Stdout: -------
2025-02-08T23:16:47.588000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_scripthash_121
2025-02-08T23:16:48.579000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_scripthash.py", line 51, in run_test
    self.test_valid_requests()
  File "/work/test/functional/chronik_scripthash.py", line 102, in test_valid_requests
    txs=[genesis_cb_tx()], num_pages=1, num_txs=1
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:16:48.631000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:16:48.782000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_scripthash_121
2025-02-08T23:16:48.782000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_scripthash_121/test_framework.log
2025-02-08T23:16:48.782000Z TestFramework (ERROR): 
2025-02-08T23:16:48.782000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_scripthash_121' to consolidate all logs
2025-02-08T23:16:48.782000Z TestFramework (ERROR): 
2025-02-08T23:16:48.782000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:16:48.782000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:16:48.782000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_alp.py ======

------- Stdout: -------
2025-02-08T23:16:48.263000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_alp_122
2025-02-08T23:16:49.386000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_alp.py", line 100, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:16:49.438000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:16:49.589000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_alp_122
2025-02-08T23:16:49.589000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_alp_122/test_framework.log
2025-02-08T23:16:49.589000Z TestFramework (ERROR): 
2025-02-08T23:16:49.589000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_alp_122' to consolidate all logs
2025-02-08T23:16:49.589000Z TestFramework (ERROR): 
2025-02-08T23:16:49.589000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:16:49.589000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:16:49.589000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_broadcast_txs.py ======

------- Stdout: -------
2025-02-08T23:17:06.612000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_broadcast_txs_235
2025-02-08T23:17:07.316000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_broadcast_txs.py", line 76, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:17:07.368000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:17:07.921000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_broadcast_txs_235
2025-02-08T23:17:07.921000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_broadcast_txs_235/test_framework.log
2025-02-08T23:17:07.922000Z TestFramework (ERROR): 
2025-02-08T23:17:07.922000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_broadcast_txs_235' to consolidate all logs
2025-02-08T23:17:07.923000Z TestFramework (ERROR): 
2025-02-08T23:17:07.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-02-08T23:17:07.924000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:17:07.924000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_burn.py ======

------- Stdout: -------
2025-02-08T23:17:06.701000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_burn_236
2025-02-08T23:17:07.396000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_burn.py", line 92, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:17:07.448000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:17:07.901000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_burn_236
2025-02-08T23:17:07.902000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_burn_236/test_framework.log
2025-02-08T23:17:07.902000Z TestFramework (ERROR): 
2025-02-08T23:17:07.902000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_burn_236' to consolidate all logs
2025-02-08T23:17:07.903000Z TestFramework (ERROR): 
2025-02-08T23:17:07.903000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:17:07.903000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:17:07.903000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_id_group.py ======

------- Stdout: -------
2025-02-08T23:16:58.063000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_id_group_172
2025-02-08T23:16:58.880000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_id_group.py", line 95, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:16:58.932000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:16:59.033000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_id_group_172
2025-02-08T23:16:59.033000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_id_group_172/test_framework.log
2025-02-08T23:16:59.033000Z TestFramework (ERROR): 
2025-02-08T23:16:59.033000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_id_group_172' to consolidate all logs
2025-02-08T23:16:59.033000Z TestFramework (ERROR): 
2025-02-08T23:16:59.033000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:16:59.033000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:16:59.033000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_script_group.py ======

------- Stdout: -------
2025-02-08T23:17:07.074000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_script_group_238
2025-02-08T23:17:08.512000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_script_group.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:17:08.564000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:17:08.665000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_script_group_238
2025-02-08T23:17:08.665000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_script_group_238/test_framework.log
2025-02-08T23:17:08.665000Z TestFramework (ERROR): 
2025-02-08T23:17:08.665000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_script_group_238' to consolidate all logs
2025-02-08T23:17:08.665000Z TestFramework (ERROR): 
2025-02-08T23:17:08.665000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:17:08.665000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:17:08.665000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_fungible.py ======

------- Stdout: -------
2025-02-08T23:17:07.149000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_slp_fungible_239
2025-02-08T23:17:08.606000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_fungible.py", line 80, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:17:08.657000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:17:08.758000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_slp_fungible_239
2025-02-08T23:17:08.758000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_slp_fungible_239/test_framework.log
2025-02-08T23:17:08.758000Z TestFramework (ERROR): 
2025-02-08T23:17:08.759000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_slp_fungible_239' to consolidate all logs
2025-02-08T23:17:08.759000Z TestFramework (ERROR): 
2025-02-08T23:17:08.759000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:17:08.759000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:17:08.759000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py ======

------- Stdout: -------
2025-02-08T23:16:58.206000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_slp_mint_vault_173
2025-02-08T23:16:59.270000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_mint_vault.py", line 119, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:16:59.322000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:16:59.423000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_slp_mint_vault_173
2025-02-08T23:16:59.423000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_slp_mint_vault_173/test_framework.log
2025-02-08T23:16:59.423000Z TestFramework (ERROR): 
2025-02-08T23:16:59.423000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_slp_mint_vault_173' to consolidate all logs
2025-02-08T23:16:59.424000Z TestFramework (ERROR): 
2025-02-08T23:16:59.424000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:16:59.424000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:16:59.424000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_nft1.py ======

------- Stdout: -------
2025-02-08T23:17:07.302000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_slp_nft1_240
2025-02-08T23:17:08.527000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_nft1.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:17:08.578000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:17:08.680000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_slp_nft1_240
2025-02-08T23:17:08.680000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_slp_nft1_240/test_framework.log
2025-02-08T23:17:08.680000Z TestFramework (ERROR): 
2025-02-08T23:17:08.680000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_token_slp_nft1_240' to consolidate all logs
2025-02-08T23:17:08.680000Z TestFramework (ERROR): 
2025-02-08T23:17:08.680000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:17:08.680000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:17:08.680000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_tx.py ======

------- Stdout: -------
2025-02-08T23:16:58.332000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_tx_174
2025-02-08T23:16:59.074000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_tx.py", line 64, in run_test
    assert_equal(chronik.tx(GENESIS_CB_TXID).ok(), genesis_cb_tx())
                                                   ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:16:59.126000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:16:59.277000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_tx_174
2025-02-08T23:16:59.277000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_tx_174/test_framework.log
2025-02-08T23:16:59.277000Z TestFramework (ERROR): 
2025-02-08T23:16:59.277000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_tx_174' to consolidate all logs
2025-02-08T23:16:59.277000Z TestFramework (ERROR): 
2025-02-08T23:16:59.277000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:16:59.277000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:16:59.277000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_ws.py ======

------- Stdout: -------
2025-02-08T23:15:18.364000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_ws_13
2025-02-08T23:15:34.244000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_ws.py", line 120, in run_test
    coinbase_data = coinbase_data_from_block(tip)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/chronik_ws.py", line 116, in coinbase_data_from_block
    return pb.CoinbaseData(
           ^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 535, in init
    copy.add(**val)
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/containers.py", line 276, in add
    new_element = self._message_descriptor._concrete_class(**kwargs)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:15:34.246000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:15:34.403000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_ws_13
2025-02-08T23:15:34.403000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_ws_13/test_framework.log
2025-02-08T23:15:34.403000Z TestFramework (ERROR): 
2025-02-08T23:15:34.403000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_231451/chronik_ws_13' to consolidate all logs
2025-02-08T23:15:34.403000Z TestFramework (ERROR): 
2025-02-08T23:15:34.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-02-08T23:15:34.404000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:15:34.404000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: chronik_block_txs.py
Bitcoin ABC functional tests: chronik_disable_token_index.py
Bitcoin ABC functional tests: chronik_pause.py
Bitcoin ABC functional tests: chronik_script_confirmed_txs.py
Bitcoin ABC functional tests: chronik_script_history.py
Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py
Bitcoin ABC functional tests: chronik_script_utxos.py
Bitcoin ABC functional tests: chronik_scripthash.py
Bitcoin ABC functional tests: chronik_token_alp.py
Bitcoin ABC functional tests: chronik_token_broadcast_txs.py
Bitcoin ABC functional tests: chronik_token_burn.py
Bitcoin ABC functional tests: chronik_token_id_group.py
Bitcoin ABC functional tests: chronik_token_script_group.py
Bitcoin ABC functional tests: chronik_token_slp_fungible.py
Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py
Bitcoin ABC functional tests: chronik_token_slp_nft1.py
Bitcoin ABC functional tests: chronik_tx.py
Bitcoin ABC functional tests: chronik_ws.py

token-server refactored, tests pass

Failed tests logs:

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

------- Stdout: -------
2025-02-08T23:19:39.707000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_block_txs_162
2025-02-08T23:19:41.904000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_block_txs.py", line 92, in run_test
    txs=[genesis_cb_tx()],
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:19:41.956000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:19:42.259000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_block_txs_162
2025-02-08T23:19:42.259000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_block_txs_162/test_framework.log
2025-02-08T23:19:42.259000Z TestFramework (ERROR): 
2025-02-08T23:19:42.259000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_block_txs_162' to consolidate all logs
2025-02-08T23:19:42.259000Z TestFramework (ERROR): 
2025-02-08T23:19:42.260000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:19:42.260000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:19:42.260000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_disable_token_index.py ======

------- Stdout: -------
2025-02-08T23:19:22.654000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_disable_token_index_119
2025-02-08T23:19:24.537000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_disable_token_index.py", line 72, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:19:24.589000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:19:24.842000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_disable_token_index_119
2025-02-08T23:19:24.842000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_disable_token_index_119/test_framework.log
2025-02-08T23:19:24.842000Z TestFramework (ERROR): 
2025-02-08T23:19:24.842000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_disable_token_index_119' to consolidate all logs
2025-02-08T23:19:24.842000Z TestFramework (ERROR): 
2025-02-08T23:19:24.842000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:19:24.842000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:19:24.842000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_pause.py ======

------- Stdout: -------
2025-02-08T23:19:41.309000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_pause_167
2025-02-08T23:19:43.137000Z TestFramework (INFO): Restart to allow pause
2025-02-08T23:19:44.244000Z TestFramework (INFO): Generate coin + mature for testing
2025-02-08T23:19:44.323000Z TestFramework (INFO): Pause Chronik indexing
2025-02-08T23:19:44.324000Z TestFramework (INFO): Send using P2P network
2025-02-08T23:19:44.375000Z TestFramework (INFO): Tx not yet picked up by chronik
2025-02-08T23:19:44.475000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T23:19:44.476000Z TestFramework (INFO): Chronik has now indexed the tx
2025-02-08T23:19:44.477000Z TestFramework (INFO): Pause Chronik indexing for block processing
2025-02-08T23:19:44.477000Z TestFramework (INFO): Create block with conflicting tx
2025-02-08T23:19:44.578000Z TestFramework (INFO): Block not indexed yet
2025-02-08T23:19:44.680000Z TestFramework (INFO): Chronik still believes the old tx exists
2025-02-08T23:19:44.683000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T23:19:44.686000Z TestFramework (INFO): Block now indexed and tx conflict resolved
2025-02-08T23:19:44.691000Z TestFramework (INFO): Pause Chronik for reorg
2025-02-08T23:19:44.693000Z TestFramework (INFO): Reorg last block by mining two blocks
2025-02-08T23:19:44.795000Z TestFramework (INFO): Reorg returns tx to mempool
2025-02-08T23:19:44.796000Z TestFramework (INFO): Chronik still thinks blockA exists
2025-02-08T23:19:44.897000Z TestFramework (INFO): Add block that mines the tx
2025-02-08T23:19:44.998000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T23:19:45.001000Z 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/chronik_pause.py", line 160, in run_test
    assert_equal(tx_proto.inputs[0].value, coinvalue)
                 ^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'TxInput' object has no attribute 'value'
2025-02-08T23:19:45.052000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:19:45.303000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_pause_167
2025-02-08T23:19:45.304000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_pause_167/test_framework.log
2025-02-08T23:19:45.304000Z TestFramework (ERROR): 
2025-02-08T23:19:45.304000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_pause_167' to consolidate all logs
2025-02-08T23:19:45.304000Z TestFramework (ERROR): 
2025-02-08T23:19:45.304000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:19:45.304000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:19:45.304000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_confirmed_txs.py ======

------- Stdout: -------
2025-02-08T23:18:34.618000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_script_confirmed_txs_66
2025-02-08T23:18:36.521000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_confirmed_txs.py", line 124, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:18:36.573000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:18:36.824000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_script_confirmed_txs_66
2025-02-08T23:18:36.824000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_script_confirmed_txs_66/test_framework.log
2025-02-08T23:18:36.825000Z TestFramework (ERROR): 
2025-02-08T23:18:36.825000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_script_confirmed_txs_66' to consolidate all logs
2025-02-08T23:18:36.825000Z TestFramework (ERROR): 
2025-02-08T23:18:36.825000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:18:36.826000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:18:36.826000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_history.py ======

------- Stdout: -------
2025-02-08T23:18:45.542000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_script_history_75
2025-02-08T23:18:47.504000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_history.py", line 127, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:18:47.555000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:18:47.907000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_script_history_75
2025-02-08T23:18:47.907000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_script_history_75/test_framework.log
2025-02-08T23:18:47.907000Z TestFramework (ERROR): 
2025-02-08T23:18:47.907000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_script_history_75' to consolidate all logs
2025-02-08T23:18:47.907000Z TestFramework (ERROR): 
2025-02-08T23:18:47.907000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:18:47.907000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:18:47.907000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py ======

------- Stdout: -------
2025-02-08T23:19:42.418000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_script_unconfirmed_txs_170
2025-02-08T23:19:44.444000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_unconfirmed_txs.py", line 151, in run_test
    pb.TxInput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxInput has no "value" field.
2025-02-08T23:19:44.495000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:19:44.747000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_script_unconfirmed_txs_170
2025-02-08T23:19:44.747000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_script_unconfirmed_txs_170/test_framework.log
2025-02-08T23:19:44.747000Z TestFramework (ERROR): 
2025-02-08T23:19:44.747000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_script_unconfirmed_txs_170' to consolidate all logs
2025-02-08T23:19:44.747000Z TestFramework (ERROR): 
2025-02-08T23:19:44.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-02-08T23:19:44.747000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:19:44.747000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_utxos.py ======

------- Stdout: -------
2025-02-08T23:19:58.483000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_script_utxos_233
2025-02-08T23:20:00.535000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_utxos.py", line 91, in run_test
    pb.ScriptUtxo(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message ScriptUtxo has no "value" field.
2025-02-08T23:20:00.587000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:20:00.888000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_script_utxos_233
2025-02-08T23:20:00.888000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_script_utxos_233/test_framework.log
2025-02-08T23:20:00.888000Z TestFramework (ERROR): 
2025-02-08T23:20:00.888000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_script_utxos_233' to consolidate all logs
2025-02-08T23:20:00.888000Z TestFramework (ERROR): 
2025-02-08T23:20:00.889000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:20:00.889000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:20:00.889000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_scripthash.py ======

------- Stdout: -------
2025-02-08T23:19:23.828000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_scripthash_121
2025-02-08T23:19:25.846000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_scripthash.py", line 51, in run_test
    self.test_valid_requests()
  File "/work/test/functional/chronik_scripthash.py", line 102, in test_valid_requests
    txs=[genesis_cb_tx()], num_pages=1, num_txs=1
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:19:25.899000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:19:26.152000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_scripthash_121
2025-02-08T23:19:26.152000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_scripthash_121/test_framework.log
2025-02-08T23:19:26.153000Z TestFramework (ERROR): 
2025-02-08T23:19:26.153000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_scripthash_121' to consolidate all logs
2025-02-08T23:19:26.153000Z TestFramework (ERROR): 
2025-02-08T23:19:26.153000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:19:26.153000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:19:26.153000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_alp.py ======

------- Stdout: -------
2025-02-08T23:19:24.734000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_alp_122
2025-02-08T23:19:26.985000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_alp.py", line 100, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:19:27.037000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:19:27.288000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_alp_122
2025-02-08T23:19:27.288000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_alp_122/test_framework.log
2025-02-08T23:19:27.288000Z TestFramework (ERROR): 
2025-02-08T23:19:27.288000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_alp_122' to consolidate all logs
2025-02-08T23:19:27.288000Z TestFramework (ERROR): 
2025-02-08T23:19:27.288000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:19:27.288000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:19:27.288000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_broadcast_txs.py ======

------- Stdout: -------
2025-02-08T23:19:58.752000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_broadcast_txs_235
2025-02-08T23:20:00.873000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_broadcast_txs.py", line 76, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:20:00.925000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:20:01.176000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_broadcast_txs_235
2025-02-08T23:20:01.176000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_broadcast_txs_235/test_framework.log
2025-02-08T23:20:01.176000Z TestFramework (ERROR): 
2025-02-08T23:20:01.176000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_broadcast_txs_235' to consolidate all logs
2025-02-08T23:20:01.176000Z TestFramework (ERROR): 
2025-02-08T23:20:01.176000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:20:01.176000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:20:01.176000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_burn.py ======

------- Stdout: -------
2025-02-08T23:19:58.789000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_burn_236
2025-02-08T23:20:00.914000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_burn.py", line 92, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:20:00.966000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:20:01.217000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_burn_236
2025-02-08T23:20:01.217000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_burn_236/test_framework.log
2025-02-08T23:20:01.217000Z TestFramework (ERROR): 
2025-02-08T23:20:01.217000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_burn_236' to consolidate all logs
2025-02-08T23:20:01.217000Z TestFramework (ERROR): 
2025-02-08T23:20:01.217000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:20:01.217000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:20:01.217000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_id_group.py ======

------- Stdout: -------
2025-02-08T23:19:43.044000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_id_group_172
2025-02-08T23:19:45.034000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_id_group.py", line 95, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:19:45.085000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:19:45.339000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_id_group_172
2025-02-08T23:19:45.339000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_id_group_172/test_framework.log
2025-02-08T23:19:45.339000Z TestFramework (ERROR): 
2025-02-08T23:19:45.339000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_id_group_172' to consolidate all logs
2025-02-08T23:19:45.339000Z TestFramework (ERROR): 
2025-02-08T23:19:45.339000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:19:45.339000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:19:45.339000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_script_group.py ======

------- Stdout: -------
2025-02-08T23:19:59.417000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_script_group_238
2025-02-08T23:20:01.570000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_script_group.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:20:01.621000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:20:01.873000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_script_group_238
2025-02-08T23:20:01.873000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_script_group_238/test_framework.log
2025-02-08T23:20:01.873000Z TestFramework (ERROR): 
2025-02-08T23:20:01.873000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_script_group_238' to consolidate all logs
2025-02-08T23:20:01.873000Z TestFramework (ERROR): 
2025-02-08T23:20:01.873000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:20:01.873000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:20:01.873000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_fungible.py ======

------- Stdout: -------
2025-02-08T23:19:59.501000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_slp_fungible_239
2025-02-08T23:20:01.631000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_fungible.py", line 80, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:20:01.683000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:20:01.934000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_slp_fungible_239
2025-02-08T23:20:01.934000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_slp_fungible_239/test_framework.log
2025-02-08T23:20:01.934000Z TestFramework (ERROR): 
2025-02-08T23:20:01.934000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_slp_fungible_239' to consolidate all logs
2025-02-08T23:20:01.934000Z TestFramework (ERROR): 
2025-02-08T23:20:01.934000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:20:01.934000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:20:01.934000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py ======

------- Stdout: -------
2025-02-08T23:19:43.217000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_slp_mint_vault_173
2025-02-08T23:19:45.479000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_mint_vault.py", line 119, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:19:45.530000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:19:45.782000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_slp_mint_vault_173
2025-02-08T23:19:45.782000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_slp_mint_vault_173/test_framework.log
2025-02-08T23:19:45.782000Z TestFramework (ERROR): 
2025-02-08T23:19:45.782000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_slp_mint_vault_173' to consolidate all logs
2025-02-08T23:19:45.782000Z TestFramework (ERROR): 
2025-02-08T23:19:45.782000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:19:45.782000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:19:45.782000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_nft1.py ======

------- Stdout: -------
2025-02-08T23:19:59.676000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_slp_nft1_240
2025-02-08T23:20:01.584000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_nft1.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:20:01.635000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:20:01.886000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_slp_nft1_240
2025-02-08T23:20:01.886000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_slp_nft1_240/test_framework.log
2025-02-08T23:20:01.886000Z TestFramework (ERROR): 
2025-02-08T23:20:01.887000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_token_slp_nft1_240' to consolidate all logs
2025-02-08T23:20:01.887000Z TestFramework (ERROR): 
2025-02-08T23:20:01.887000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:20:01.887000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:20:01.887000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_tx.py ======

------- Stdout: -------
2025-02-08T23:19:43.661000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_tx_174
2025-02-08T23:19:45.867000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_tx.py", line 64, in run_test
    assert_equal(chronik.tx(GENESIS_CB_TXID).ok(), genesis_cb_tx())
                                                   ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:19:45.918000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:19:46.220000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_tx_174
2025-02-08T23:19:46.220000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_tx_174/test_framework.log
2025-02-08T23:19:46.220000Z TestFramework (ERROR): 
2025-02-08T23:19:46.220000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_tx_174' to consolidate all logs
2025-02-08T23:19:46.220000Z TestFramework (ERROR): 
2025-02-08T23:19:46.220000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:19:46.220000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:19:46.220000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_ws.py ======

------- Stdout: -------
2025-02-08T23:17:20.034000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_ws_13
2025-02-08T23:17:33.912000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_ws.py", line 120, in run_test
    coinbase_data = coinbase_data_from_block(tip)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/chronik_ws.py", line 116, in coinbase_data_from_block
    return pb.CoinbaseData(
           ^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 535, in init
    copy.add(**val)
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/containers.py", line 276, in add
    new_element = self._message_descriptor._concrete_class(**kwargs)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:17:33.964000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:17:34.215000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_ws_13
2025-02-08T23:17:34.215000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_ws_13/test_framework.log
2025-02-08T23:17:34.215000Z TestFramework (ERROR): 
2025-02-08T23:17:34.215000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_231650/chronik_ws_13' to consolidate all logs
2025-02-08T23:17:34.215000Z TestFramework (ERROR): 
2025-02-08T23:17:34.215000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:17:34.215000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:17:34.216000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: chronik_block_txs.py
Bitcoin ABC functional tests: chronik_disable_token_index.py
Bitcoin ABC functional tests: chronik_pause.py
Bitcoin ABC functional tests: chronik_script_confirmed_txs.py
Bitcoin ABC functional tests: chronik_script_history.py
Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py
Bitcoin ABC functional tests: chronik_script_utxos.py
Bitcoin ABC functional tests: chronik_scripthash.py
Bitcoin ABC functional tests: chronik_token_alp.py
Bitcoin ABC functional tests: chronik_token_broadcast_txs.py
Bitcoin ABC functional tests: chronik_token_burn.py
Bitcoin ABC functional tests: chronik_token_id_group.py
Bitcoin ABC functional tests: chronik_token_script_group.py
Bitcoin ABC functional tests: chronik_token_slp_fungible.py
Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py
Bitcoin ABC functional tests: chronik_token_slp_nft1.py
Bitcoin ABC functional tests: chronik_tx.py
Bitcoin ABC functional tests: chronik_ws.py

Tail of the build log:

/work/modules/chronik-client /work/abc-ci-builds/cashtab-tests

> chronik-client@3.0.0 prepublish
> npm run build


> chronik-client@3.0.0 build
> tsc


added 265 packages, and audited 267 packages in 5s

48 packages are looking for funding
  run `npm fund` for details

5 vulnerabilities (3 moderate, 2 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> chronik-client@3.0.0 build
> tsc

/work/modules/mock-chronik-client /work/abc-ci-builds/cashtab-tests
npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm warn deprecated glob@8.1.0: Glob versions prior to v9 are no longer supported
npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.

added 349 packages, and audited 352 packages in 2s

60 packages are looking for funding
  run `npm fund` for details

1 high severity vulnerability

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

> mock-chronik-client@2.1.3 build
> tsc

mocks/index.ts(31,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'ScriptUtxo'.
mocks/index.ts(39,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'Utxo'.
mocks/index.ts(91,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(105,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxInput'.
mocks/index.ts(113,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(129,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(146,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(156,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(182,17): error TS2353: Object literal may only specify known properties, and 'actualBurnAmount' does not exist in type 'TokenEntry'.
Build cashtab-tests failed with exit code 2

Tail of the build log:

/work/modules/chronik-client /work/abc-ci-builds/token-server-tests

> chronik-client@3.0.0 prepublish
> npm run build


> chronik-client@3.0.0 build
> tsc


added 265 packages, and audited 267 packages in 5s

48 packages are looking for funding
  run `npm fund` for details

5 vulnerabilities (3 moderate, 2 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> chronik-client@3.0.0 build
> tsc

/work/modules/mock-chronik-client /work/abc-ci-builds/token-server-tests
npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm warn deprecated glob@8.1.0: Glob versions prior to v9 are no longer supported
npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.

added 349 packages, and audited 352 packages in 2s

60 packages are looking for funding
  run `npm fund` for details

1 high severity vulnerability

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

> mock-chronik-client@2.1.3 build
> tsc

mocks/index.ts(31,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'ScriptUtxo'.
mocks/index.ts(39,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'Utxo'.
mocks/index.ts(91,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(105,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxInput'.
mocks/index.ts(113,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(129,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(146,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(156,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(182,17): error TS2353: Object literal may only specify known properties, and 'actualBurnAmount' does not exist in type 'TokenEntry'.
Build token-server-tests failed with exit code 2

Tail of the build log:

/work/modules/chronik-client /work/abc-ci-builds/ecash-herald-tests

> chronik-client@3.0.0 prepublish
> npm run build


> chronik-client@3.0.0 build
> tsc


added 265 packages, and audited 267 packages in 5s

48 packages are looking for funding
  run `npm fund` for details

5 vulnerabilities (3 moderate, 2 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> chronik-client@3.0.0 build
> tsc

/work/modules/mock-chronik-client /work/abc-ci-builds/ecash-herald-tests
npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm warn deprecated glob@8.1.0: Glob versions prior to v9 are no longer supported
npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.

added 349 packages, and audited 352 packages in 2s

60 packages are looking for funding
  run `npm fund` for details

1 high severity vulnerability

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

> mock-chronik-client@2.1.3 build
> tsc

mocks/index.ts(31,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'ScriptUtxo'.
mocks/index.ts(39,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'Utxo'.
mocks/index.ts(91,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(105,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxInput'.
mocks/index.ts(113,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(129,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(146,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(156,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(182,17): error TS2353: Object literal may only specify known properties, and 'actualBurnAmount' does not exist in type 'TokenEntry'.
Build ecash-herald-tests failed with exit code 2

Failed tests logs:

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

------- Stdout: -------
2025-02-08T23:33:01.006000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_block_txs_162
2025-02-08T23:33:02.020000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_block_txs.py", line 92, in run_test
    txs=[genesis_cb_tx()],
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:33:02.072000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:33:02.223000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_block_txs_162
2025-02-08T23:33:02.223000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_block_txs_162/test_framework.log
2025-02-08T23:33:02.223000Z TestFramework (ERROR): 
2025-02-08T23:33:02.223000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_block_txs_162' to consolidate all logs
2025-02-08T23:33:02.223000Z TestFramework (ERROR): 
2025-02-08T23:33:02.223000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:33:02.223000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:33:02.223000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_disable_token_index.py ======

------- Stdout: -------
2025-02-08T23:32:50.627000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_disable_token_index_119
2025-02-08T23:32:51.852000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_disable_token_index.py", line 72, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:32:51.903000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:32:52.157000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_disable_token_index_119
2025-02-08T23:32:52.157000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_disable_token_index_119/test_framework.log
2025-02-08T23:32:52.157000Z TestFramework (ERROR): 
2025-02-08T23:32:52.157000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_disable_token_index_119' to consolidate all logs
2025-02-08T23:32:52.157000Z TestFramework (ERROR): 
2025-02-08T23:32:52.157000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:32:52.157000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:32:52.157000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_pause.py ======

------- Stdout: -------
2025-02-08T23:33:01.862000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_pause_167
2025-02-08T23:33:02.752000Z TestFramework (INFO): Restart to allow pause
2025-02-08T23:33:03.207000Z TestFramework (INFO): Generate coin + mature for testing
2025-02-08T23:33:03.309000Z TestFramework (INFO): Pause Chronik indexing
2025-02-08T23:33:03.310000Z TestFramework (INFO): Send using P2P network
2025-02-08T23:33:03.361000Z TestFramework (INFO): Tx not yet picked up by chronik
2025-02-08T23:33:03.461000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T23:33:03.462000Z TestFramework (INFO): Chronik has now indexed the tx
2025-02-08T23:33:03.463000Z TestFramework (INFO): Pause Chronik indexing for block processing
2025-02-08T23:33:03.463000Z TestFramework (INFO): Create block with conflicting tx
2025-02-08T23:33:03.565000Z TestFramework (INFO): Block not indexed yet
2025-02-08T23:33:03.666000Z TestFramework (INFO): Chronik still believes the old tx exists
2025-02-08T23:33:03.666000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T23:33:03.667000Z TestFramework (INFO): Block now indexed and tx conflict resolved
2025-02-08T23:33:03.668000Z TestFramework (INFO): Pause Chronik for reorg
2025-02-08T23:33:03.669000Z TestFramework (INFO): Reorg last block by mining two blocks
2025-02-08T23:33:03.770000Z TestFramework (INFO): Reorg returns tx to mempool
2025-02-08T23:33:03.771000Z TestFramework (INFO): Chronik still thinks blockA exists
2025-02-08T23:33:03.872000Z TestFramework (INFO): Add block that mines the tx
2025-02-08T23:33:03.974000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T23:33:03.976000Z 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/chronik_pause.py", line 160, in run_test
    assert_equal(tx_proto.inputs[0].value, coinvalue)
                 ^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'TxInput' object has no attribute 'value'
2025-02-08T23:33:04.027000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:33:04.228000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_pause_167
2025-02-08T23:33:04.228000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_pause_167/test_framework.log
2025-02-08T23:33:04.228000Z TestFramework (ERROR): 
2025-02-08T23:33:04.229000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_pause_167' to consolidate all logs
2025-02-08T23:33:04.229000Z TestFramework (ERROR): 
2025-02-08T23:33:04.229000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:33:04.229000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:33:04.229000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_confirmed_txs.py ======

------- Stdout: -------
2025-02-08T23:32:25.451000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_script_confirmed_txs_66
2025-02-08T23:32:26.201000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_confirmed_txs.py", line 124, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:32:26.253000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:32:26.454000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_script_confirmed_txs_66
2025-02-08T23:32:26.454000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_script_confirmed_txs_66/test_framework.log
2025-02-08T23:32:26.454000Z TestFramework (ERROR): 
2025-02-08T23:32:26.454000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_script_confirmed_txs_66' to consolidate all logs
2025-02-08T23:32:26.454000Z TestFramework (ERROR): 
2025-02-08T23:32:26.454000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:32:26.454000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:32:26.454000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_history.py ======

------- Stdout: -------
2025-02-08T23:32:29.902000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_script_history_75
2025-02-08T23:32:30.652000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_history.py", line 127, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:32:30.704000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:32:30.855000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_script_history_75
2025-02-08T23:32:30.855000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_script_history_75/test_framework.log
2025-02-08T23:32:30.855000Z TestFramework (ERROR): 
2025-02-08T23:32:30.855000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_script_history_75' to consolidate all logs
2025-02-08T23:32:30.855000Z TestFramework (ERROR): 
2025-02-08T23:32:30.856000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:32:30.856000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:32:30.856000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py ======

------- Stdout: -------
2025-02-08T23:33:02.280000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_script_unconfirmed_txs_170
2025-02-08T23:33:03.378000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_unconfirmed_txs.py", line 151, in run_test
    pb.TxInput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxInput has no "value" field.
2025-02-08T23:33:03.430000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:33:03.581000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_script_unconfirmed_txs_170
2025-02-08T23:33:03.581000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_script_unconfirmed_txs_170/test_framework.log
2025-02-08T23:33:03.581000Z TestFramework (ERROR): 
2025-02-08T23:33:03.581000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_script_unconfirmed_txs_170' to consolidate all logs
2025-02-08T23:33:03.581000Z TestFramework (ERROR): 
2025-02-08T23:33:03.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-02-08T23:33:03.581000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:33:03.581000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_utxos.py ======

------- Stdout: -------
2025-02-08T23:33:11.312000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_script_utxos_233
2025-02-08T23:33:12.552000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_utxos.py", line 91, in run_test
    pb.ScriptUtxo(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message ScriptUtxo has no "value" field.
2025-02-08T23:33:12.603000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:33:12.755000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_script_utxos_233
2025-02-08T23:33:12.755000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_script_utxos_233/test_framework.log
2025-02-08T23:33:12.755000Z TestFramework (ERROR): 
2025-02-08T23:33:12.755000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_script_utxos_233' to consolidate all logs
2025-02-08T23:33:12.755000Z TestFramework (ERROR): 
2025-02-08T23:33:12.755000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:33:12.755000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:33:12.755000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_scripthash.py ======

------- Stdout: -------
2025-02-08T23:32:51.693000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_scripthash_121
2025-02-08T23:32:53.240000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_scripthash.py", line 51, in run_test
    self.test_valid_requests()
  File "/work/test/functional/chronik_scripthash.py", line 102, in test_valid_requests
    txs=[genesis_cb_tx()], num_pages=1, num_txs=1
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:32:53.292000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:32:53.443000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_scripthash_121
2025-02-08T23:32:53.443000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_scripthash_121/test_framework.log
2025-02-08T23:32:53.443000Z TestFramework (ERROR): 
2025-02-08T23:32:53.443000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_scripthash_121' to consolidate all logs
2025-02-08T23:32:53.443000Z TestFramework (ERROR): 
2025-02-08T23:32:53.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-02-08T23:32:53.443000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:32:53.443000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_alp.py ======

------- Stdout: -------
2025-02-08T23:32:52.277000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_alp_122
2025-02-08T23:32:53.663000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_alp.py", line 100, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:32:53.714000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:32:53.815000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_alp_122
2025-02-08T23:32:53.815000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_alp_122/test_framework.log
2025-02-08T23:32:53.816000Z TestFramework (ERROR): 
2025-02-08T23:32:53.816000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_alp_122' to consolidate all logs
2025-02-08T23:32:53.816000Z TestFramework (ERROR): 
2025-02-08T23:32:53.816000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:32:53.816000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:32:53.816000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_broadcast_txs.py ======

------- Stdout: -------
2025-02-08T23:33:11.453000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_broadcast_txs_235
2025-02-08T23:33:12.641000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_broadcast_txs.py", line 76, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:33:12.693000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:33:12.794000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_broadcast_txs_235
2025-02-08T23:33:12.794000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_broadcast_txs_235/test_framework.log
2025-02-08T23:33:12.794000Z TestFramework (ERROR): 
2025-02-08T23:33:12.794000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_broadcast_txs_235' to consolidate all logs
2025-02-08T23:33:12.794000Z TestFramework (ERROR): 
2025-02-08T23:33:12.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-02-08T23:33:12.794000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:33:12.794000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_burn.py ======

------- Stdout: -------
2025-02-08T23:33:11.507000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_burn_236
2025-02-08T23:33:12.719000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_burn.py", line 92, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:33:12.771000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:33:12.872000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_burn_236
2025-02-08T23:33:12.872000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_burn_236/test_framework.log
2025-02-08T23:33:12.872000Z TestFramework (ERROR): 
2025-02-08T23:33:12.872000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_burn_236' to consolidate all logs
2025-02-08T23:33:12.872000Z TestFramework (ERROR): 
2025-02-08T23:33:12.873000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:33:12.873000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:33:12.873000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_id_group.py ======

------- Stdout: -------
2025-02-08T23:33:02.368000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_id_group_172
2025-02-08T23:33:03.413000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_id_group.py", line 95, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:33:03.465000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:33:03.566000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_id_group_172
2025-02-08T23:33:03.566000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_id_group_172/test_framework.log
2025-02-08T23:33:03.566000Z TestFramework (ERROR): 
2025-02-08T23:33:03.566000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_id_group_172' to consolidate all logs
2025-02-08T23:33:03.566000Z TestFramework (ERROR): 
2025-02-08T23:33:03.566000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:33:03.566000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:33:03.566000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_script_group.py ======

------- Stdout: -------
2025-02-08T23:33:11.974000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_script_group_238
2025-02-08T23:33:12.888000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_script_group.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:33:12.941000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:33:13.042000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_script_group_238
2025-02-08T23:33:13.042000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_script_group_238/test_framework.log
2025-02-08T23:33:13.042000Z TestFramework (ERROR): 
2025-02-08T23:33:13.042000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_script_group_238' to consolidate all logs
2025-02-08T23:33:13.043000Z TestFramework (ERROR): 
2025-02-08T23:33:13.043000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:33:13.043000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:33:13.043000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_fungible.py ======

------- Stdout: -------
2025-02-08T23:33:12.076000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_slp_fungible_239
2025-02-08T23:33:13.025000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_fungible.py", line 80, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:33:13.076000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:33:13.178000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_slp_fungible_239
2025-02-08T23:33:13.178000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_slp_fungible_239/test_framework.log
2025-02-08T23:33:13.178000Z TestFramework (ERROR): 
2025-02-08T23:33:13.178000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_slp_fungible_239' to consolidate all logs
2025-02-08T23:33:13.178000Z TestFramework (ERROR): 
2025-02-08T23:33:13.178000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:33:13.178000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:33:13.178000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py ======

------- Stdout: -------
2025-02-08T23:33:02.442000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_slp_mint_vault_173
2025-02-08T23:33:03.514000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_mint_vault.py", line 119, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:33:03.565000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:33:03.666000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_slp_mint_vault_173
2025-02-08T23:33:03.667000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_slp_mint_vault_173/test_framework.log
2025-02-08T23:33:03.667000Z TestFramework (ERROR): 
2025-02-08T23:33:03.667000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_slp_mint_vault_173' to consolidate all logs
2025-02-08T23:33:03.667000Z TestFramework (ERROR): 
2025-02-08T23:33:03.667000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:33:03.667000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:33:03.667000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_nft1.py ======

------- Stdout: -------
2025-02-08T23:33:12.099000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_slp_nft1_240
2025-02-08T23:33:13.081000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_nft1.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:33:13.132000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:33:13.233000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_slp_nft1_240
2025-02-08T23:33:13.234000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_slp_nft1_240/test_framework.log
2025-02-08T23:33:13.234000Z TestFramework (ERROR): 
2025-02-08T23:33:13.234000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_token_slp_nft1_240' to consolidate all logs
2025-02-08T23:33:13.234000Z TestFramework (ERROR): 
2025-02-08T23:33:13.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-02-08T23:33:13.234000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:33:13.234000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_tx.py ======

------- Stdout: -------
2025-02-08T23:33:02.861000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_tx_174
2025-02-08T23:33:03.843000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_tx.py", line 64, in run_test
    assert_equal(chronik.tx(GENESIS_CB_TXID).ok(), genesis_cb_tx())
                                                   ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:33:03.895000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:33:04.046000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_tx_174
2025-02-08T23:33:04.046000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_tx_174/test_framework.log
2025-02-08T23:33:04.046000Z TestFramework (ERROR): 
2025-02-08T23:33:04.046000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_tx_174' to consolidate all logs
2025-02-08T23:33:04.046000Z TestFramework (ERROR): 
2025-02-08T23:33:04.046000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:33:04.046000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:33:04.046000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_ws.py ======

------- Stdout: -------
2025-02-08T23:31:17.889000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_ws_13
2025-02-08T23:31:29.891000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_ws.py", line 120, in run_test
    coinbase_data = coinbase_data_from_block(tip)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/chronik_ws.py", line 116, in coinbase_data_from_block
    return pb.CoinbaseData(
           ^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 535, in init
    copy.add(**val)
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/containers.py", line 276, in add
    new_element = self._message_descriptor._concrete_class(**kwargs)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:31:29.942000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:31:30.044000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_ws_13
2025-02-08T23:31:30.044000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_ws_13/test_framework.log
2025-02-08T23:31:30.044000Z TestFramework (ERROR): 
2025-02-08T23:31:30.044000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_233051/chronik_ws_13' to consolidate all logs
2025-02-08T23:31:30.044000Z TestFramework (ERROR): 
2025-02-08T23:31:30.044000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:31:30.044000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:31:30.044000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: chronik_block_txs.py
Bitcoin ABC functional tests: chronik_disable_token_index.py
Bitcoin ABC functional tests: chronik_pause.py
Bitcoin ABC functional tests: chronik_script_confirmed_txs.py
Bitcoin ABC functional tests: chronik_script_history.py
Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py
Bitcoin ABC functional tests: chronik_script_utxos.py
Bitcoin ABC functional tests: chronik_scripthash.py
Bitcoin ABC functional tests: chronik_token_alp.py
Bitcoin ABC functional tests: chronik_token_broadcast_txs.py
Bitcoin ABC functional tests: chronik_token_burn.py
Bitcoin ABC functional tests: chronik_token_id_group.py
Bitcoin ABC functional tests: chronik_token_script_group.py
Bitcoin ABC functional tests: chronik_token_slp_fungible.py
Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py
Bitcoin ABC functional tests: chronik_token_slp_nft1.py
Bitcoin ABC functional tests: chronik_tx.py
Bitcoin ABC functional tests: chronik_ws.py

Tail of the build log:

/work/modules/chronik-client /work/abc-ci-builds/cashtab-tests

> chronik-client@3.0.0 prepublish
> npm run build


> chronik-client@3.0.0 build
> tsc


added 265 packages, and audited 267 packages in 5s

48 packages are looking for funding
  run `npm fund` for details

5 vulnerabilities (3 moderate, 2 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> chronik-client@3.0.0 build
> tsc

/work/modules/mock-chronik-client /work/abc-ci-builds/cashtab-tests
npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm warn deprecated glob@8.1.0: Glob versions prior to v9 are no longer supported
npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.

added 349 packages, and audited 352 packages in 2s

60 packages are looking for funding
  run `npm fund` for details

1 high severity vulnerability

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

> mock-chronik-client@2.1.3 build
> tsc

mocks/index.ts(31,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'ScriptUtxo'.
mocks/index.ts(39,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'Utxo'.
mocks/index.ts(91,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(105,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxInput'.
mocks/index.ts(113,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(129,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(146,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(156,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(182,17): error TS2353: Object literal may only specify known properties, and 'actualBurnAmount' does not exist in type 'TokenEntry'.
Build cashtab-tests failed with exit code 2

Failed tests logs:

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

------- Stdout: -------
2025-02-08T23:36:21.365000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_block_txs_162
2025-02-08T23:36:23.550000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_block_txs.py", line 92, in run_test
    txs=[genesis_cb_tx()],
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:36:23.604000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:36:23.905000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_block_txs_162
2025-02-08T23:36:23.906000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_block_txs_162/test_framework.log
2025-02-08T23:36:23.906000Z TestFramework (ERROR): 
2025-02-08T23:36:23.906000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_block_txs_162' to consolidate all logs
2025-02-08T23:36:23.906000Z TestFramework (ERROR): 
2025-02-08T23:36:23.906000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:36:23.906000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:36:23.906000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_disable_token_index.py ======

------- Stdout: -------
2025-02-08T23:36:05.183000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_disable_token_index_119
2025-02-08T23:36:07.333000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_disable_token_index.py", line 72, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:36:07.385000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:36:07.637000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_disable_token_index_119
2025-02-08T23:36:07.638000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_disable_token_index_119/test_framework.log
2025-02-08T23:36:07.638000Z TestFramework (ERROR): 
2025-02-08T23:36:07.638000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_disable_token_index_119' to consolidate all logs
2025-02-08T23:36:07.639000Z TestFramework (ERROR): 
2025-02-08T23:36:07.639000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:36:07.639000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:36:07.640000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_pause.py ======

------- Stdout: -------
2025-02-08T23:36:22.826000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_pause_167
2025-02-08T23:36:24.690000Z TestFramework (INFO): Restart to allow pause
2025-02-08T23:36:25.847000Z TestFramework (INFO): Generate coin + mature for testing
2025-02-08T23:36:25.928000Z TestFramework (INFO): Pause Chronik indexing
2025-02-08T23:36:25.928000Z TestFramework (INFO): Send using P2P network
2025-02-08T23:36:25.979000Z TestFramework (INFO): Tx not yet picked up by chronik
2025-02-08T23:36:26.080000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T23:36:26.081000Z TestFramework (INFO): Chronik has now indexed the tx
2025-02-08T23:36:26.081000Z TestFramework (INFO): Pause Chronik indexing for block processing
2025-02-08T23:36:26.082000Z TestFramework (INFO): Create block with conflicting tx
2025-02-08T23:36:26.183000Z TestFramework (INFO): Block not indexed yet
2025-02-08T23:36:26.284000Z TestFramework (INFO): Chronik still believes the old tx exists
2025-02-08T23:36:26.285000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T23:36:26.285000Z TestFramework (INFO): Block now indexed and tx conflict resolved
2025-02-08T23:36:26.286000Z TestFramework (INFO): Pause Chronik for reorg
2025-02-08T23:36:26.287000Z TestFramework (INFO): Reorg last block by mining two blocks
2025-02-08T23:36:26.388000Z TestFramework (INFO): Reorg returns tx to mempool
2025-02-08T23:36:26.389000Z TestFramework (INFO): Chronik still thinks blockA exists
2025-02-08T23:36:26.491000Z TestFramework (INFO): Add block that mines the tx
2025-02-08T23:36:26.593000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T23:36:26.596000Z 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/chronik_pause.py", line 160, in run_test
    assert_equal(tx_proto.inputs[0].value, coinvalue)
                 ^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'TxInput' object has no attribute 'value'
2025-02-08T23:36:26.647000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:36:26.898000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_pause_167
2025-02-08T23:36:26.898000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_pause_167/test_framework.log
2025-02-08T23:36:26.898000Z TestFramework (ERROR): 
2025-02-08T23:36:26.898000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_pause_167' to consolidate all logs
2025-02-08T23:36:26.898000Z TestFramework (ERROR): 
2025-02-08T23:36:26.898000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:36:26.899000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:36:26.899000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_confirmed_txs.py ======

------- Stdout: -------
2025-02-08T23:35:15.884000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_script_confirmed_txs_66
2025-02-08T23:35:17.753000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_confirmed_txs.py", line 124, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:35:17.805000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:35:18.056000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_script_confirmed_txs_66
2025-02-08T23:35:18.056000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_script_confirmed_txs_66/test_framework.log
2025-02-08T23:35:18.056000Z TestFramework (ERROR): 
2025-02-08T23:35:18.056000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_script_confirmed_txs_66' to consolidate all logs
2025-02-08T23:35:18.056000Z TestFramework (ERROR): 
2025-02-08T23:35:18.056000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:35:18.056000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:35:18.056000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_history.py ======

------- Stdout: -------
2025-02-08T23:35:25.152000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_script_history_75
2025-02-08T23:35:27.054000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_history.py", line 127, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:35:27.106000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:35:27.409000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_script_history_75
2025-02-08T23:35:27.409000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_script_history_75/test_framework.log
2025-02-08T23:35:27.409000Z TestFramework (ERROR): 
2025-02-08T23:35:27.409000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_script_history_75' to consolidate all logs
2025-02-08T23:35:27.409000Z TestFramework (ERROR): 
2025-02-08T23:35:27.409000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:35:27.409000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:35:27.409000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py ======

------- Stdout: -------
2025-02-08T23:36:24.220000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_script_unconfirmed_txs_170
2025-02-08T23:36:26.271000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_unconfirmed_txs.py", line 151, in run_test
    pb.TxInput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxInput has no "value" field.
2025-02-08T23:36:26.322000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:36:26.574000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_script_unconfirmed_txs_170
2025-02-08T23:36:26.574000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_script_unconfirmed_txs_170/test_framework.log
2025-02-08T23:36:26.574000Z TestFramework (ERROR): 
2025-02-08T23:36:26.574000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_script_unconfirmed_txs_170' to consolidate all logs
2025-02-08T23:36:26.574000Z TestFramework (ERROR): 
2025-02-08T23:36:26.574000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:36:26.574000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:36:26.574000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_utxos.py ======

------- Stdout: -------
2025-02-08T23:36:39.699000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_script_utxos_233
2025-02-08T23:36:41.634000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_utxos.py", line 91, in run_test
    pb.ScriptUtxo(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message ScriptUtxo has no "value" field.
2025-02-08T23:36:41.686000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:36:41.987000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_script_utxos_233
2025-02-08T23:36:41.987000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_script_utxos_233/test_framework.log
2025-02-08T23:36:41.987000Z TestFramework (ERROR): 
2025-02-08T23:36:41.987000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_script_utxos_233' to consolidate all logs
2025-02-08T23:36:41.987000Z TestFramework (ERROR): 
2025-02-08T23:36:41.987000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:36:41.987000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:36:41.988000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_scripthash.py ======

------- Stdout: -------
2025-02-08T23:36:05.651000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_scripthash_121
2025-02-08T23:36:07.881000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_scripthash.py", line 51, in run_test
    self.test_valid_requests()
  File "/work/test/functional/chronik_scripthash.py", line 102, in test_valid_requests
    txs=[genesis_cb_tx()], num_pages=1, num_txs=1
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:36:07.933000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:36:08.185000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_scripthash_121
2025-02-08T23:36:08.185000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_scripthash_121/test_framework.log
2025-02-08T23:36:08.185000Z TestFramework (ERROR): 
2025-02-08T23:36:08.185000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_scripthash_121' to consolidate all logs
2025-02-08T23:36:08.185000Z TestFramework (ERROR): 
2025-02-08T23:36:08.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-02-08T23:36:08.185000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:36:08.185000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_alp.py ======

------- Stdout: -------
2025-02-08T23:36:06.070000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_alp_122
2025-02-08T23:36:08.328000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_alp.py", line 100, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:36:08.379000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:36:08.631000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_alp_122
2025-02-08T23:36:08.631000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_alp_122/test_framework.log
2025-02-08T23:36:08.631000Z TestFramework (ERROR): 
2025-02-08T23:36:08.631000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_alp_122' to consolidate all logs
2025-02-08T23:36:08.631000Z TestFramework (ERROR): 
2025-02-08T23:36:08.631000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:36:08.631000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:36:08.631000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_broadcast_txs.py ======

------- Stdout: -------
2025-02-08T23:36:40.070000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_broadcast_txs_235
2025-02-08T23:36:42.212000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_broadcast_txs.py", line 76, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:36:42.263000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:36:42.515000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_broadcast_txs_235
2025-02-08T23:36:42.515000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_broadcast_txs_235/test_framework.log
2025-02-08T23:36:42.515000Z TestFramework (ERROR): 
2025-02-08T23:36:42.515000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_broadcast_txs_235' to consolidate all logs
2025-02-08T23:36:42.515000Z TestFramework (ERROR): 
2025-02-08T23:36:42.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-02-08T23:36:42.516000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:36:42.516000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_burn.py ======

------- Stdout: -------
2025-02-08T23:36:40.200000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_burn_236
2025-02-08T23:36:42.333000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_burn.py", line 92, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:36:42.384000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:36:42.635000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_burn_236
2025-02-08T23:36:42.635000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_burn_236/test_framework.log
2025-02-08T23:36:42.635000Z TestFramework (ERROR): 
2025-02-08T23:36:42.635000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_burn_236' to consolidate all logs
2025-02-08T23:36:42.635000Z TestFramework (ERROR): 
2025-02-08T23:36:42.635000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:36:42.635000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:36:42.635000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_id_group.py ======

------- Stdout: -------
2025-02-08T23:36:24.538000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_id_group_172
2025-02-08T23:36:26.513000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_id_group.py", line 95, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:36:26.565000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:36:26.817000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_id_group_172
2025-02-08T23:36:26.817000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_id_group_172/test_framework.log
2025-02-08T23:36:26.817000Z TestFramework (ERROR): 
2025-02-08T23:36:26.817000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_id_group_172' to consolidate all logs
2025-02-08T23:36:26.817000Z TestFramework (ERROR): 
2025-02-08T23:36:26.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-02-08T23:36:26.818000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:36:26.818000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_script_group.py ======

------- Stdout: -------
2025-02-08T23:36:40.707000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_script_group_238
2025-02-08T23:36:42.817000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_script_group.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:36:42.868000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:36:43.169000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_script_group_238
2025-02-08T23:36:43.170000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_script_group_238/test_framework.log
2025-02-08T23:36:43.170000Z TestFramework (ERROR): 
2025-02-08T23:36:43.170000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_script_group_238' to consolidate all logs
2025-02-08T23:36:43.170000Z TestFramework (ERROR): 
2025-02-08T23:36:43.170000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:36:43.170000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:36:43.170000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_fungible.py ======

------- Stdout: -------
2025-02-08T23:36:40.947000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_slp_fungible_239
2025-02-08T23:36:43.148000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_fungible.py", line 80, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:36:43.200000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:36:43.451000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_slp_fungible_239
2025-02-08T23:36:43.452000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_slp_fungible_239/test_framework.log
2025-02-08T23:36:43.452000Z TestFramework (ERROR): 
2025-02-08T23:36:43.452000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_slp_fungible_239' to consolidate all logs
2025-02-08T23:36:43.452000Z TestFramework (ERROR): 
2025-02-08T23:36:43.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-02-08T23:36:43.452000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:36:43.452000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py ======

------- Stdout: -------
2025-02-08T23:36:24.859000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_slp_mint_vault_173
2025-02-08T23:36:26.885000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_mint_vault.py", line 119, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:36:26.936000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:36:27.188000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_slp_mint_vault_173
2025-02-08T23:36:27.188000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_slp_mint_vault_173/test_framework.log
2025-02-08T23:36:27.188000Z TestFramework (ERROR): 
2025-02-08T23:36:27.189000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_slp_mint_vault_173' to consolidate all logs
2025-02-08T23:36:27.189000Z TestFramework (ERROR): 
2025-02-08T23:36:27.189000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:36:27.189000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:36:27.190000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_nft1.py ======

------- Stdout: -------
2025-02-08T23:36:40.974000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_slp_nft1_240
2025-02-08T23:36:43.149000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_nft1.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:36:43.201000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:36:43.452000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_slp_nft1_240
2025-02-08T23:36:43.452000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_slp_nft1_240/test_framework.log
2025-02-08T23:36:43.452000Z TestFramework (ERROR): 
2025-02-08T23:36:43.452000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_token_slp_nft1_240' to consolidate all logs
2025-02-08T23:36:43.452000Z TestFramework (ERROR): 
2025-02-08T23:36:43.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-02-08T23:36:43.452000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:36:43.452000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_tx.py ======

------- Stdout: -------
2025-02-08T23:36:24.992000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_tx_174
2025-02-08T23:36:26.949000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_tx.py", line 64, in run_test
    assert_equal(chronik.tx(GENESIS_CB_TXID).ok(), genesis_cb_tx())
                                                   ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:36:27.001000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:36:27.302000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_tx_174
2025-02-08T23:36:27.302000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_tx_174/test_framework.log
2025-02-08T23:36:27.302000Z TestFramework (ERROR): 
2025-02-08T23:36:27.303000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_tx_174' to consolidate all logs
2025-02-08T23:36:27.303000Z TestFramework (ERROR): 
2025-02-08T23:36:27.303000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:36:27.303000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:36:27.303000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_ws.py ======

------- Stdout: -------
2025-02-08T23:34:03.851000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_ws_13
2025-02-08T23:34:15.612000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_ws.py", line 120, in run_test
    coinbase_data = coinbase_data_from_block(tip)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/chronik_ws.py", line 116, in coinbase_data_from_block
    return pb.CoinbaseData(
           ^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 535, in init
    copy.add(**val)
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/containers.py", line 276, in add
    new_element = self._message_descriptor._concrete_class(**kwargs)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:34:15.664000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:34:15.815000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_ws_13
2025-02-08T23:34:15.815000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_ws_13/test_framework.log
2025-02-08T23:34:15.815000Z TestFramework (ERROR): 
2025-02-08T23:34:15.815000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_233334/chronik_ws_13' to consolidate all logs
2025-02-08T23:34:15.815000Z TestFramework (ERROR): 
2025-02-08T23:34:15.815000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:34:15.815000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:34:15.815000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: chronik_block_txs.py
Bitcoin ABC functional tests: chronik_disable_token_index.py
Bitcoin ABC functional tests: chronik_pause.py
Bitcoin ABC functional tests: chronik_script_confirmed_txs.py
Bitcoin ABC functional tests: chronik_script_history.py
Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py
Bitcoin ABC functional tests: chronik_script_utxos.py
Bitcoin ABC functional tests: chronik_scripthash.py
Bitcoin ABC functional tests: chronik_token_alp.py
Bitcoin ABC functional tests: chronik_token_broadcast_txs.py
Bitcoin ABC functional tests: chronik_token_burn.py
Bitcoin ABC functional tests: chronik_token_id_group.py
Bitcoin ABC functional tests: chronik_token_script_group.py
Bitcoin ABC functional tests: chronik_token_slp_fungible.py
Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py
Bitcoin ABC functional tests: chronik_token_slp_nft1.py
Bitcoin ABC functional tests: chronik_tx.py
Bitcoin ABC functional tests: chronik_ws.py

Tail of the build log:

/work/modules/chronik-client /work/abc-ci-builds/ecash-herald-tests

> chronik-client@3.0.0 prepublish
> npm run build


> chronik-client@3.0.0 build
> tsc


added 265 packages, and audited 267 packages in 5s

48 packages are looking for funding
  run `npm fund` for details

5 vulnerabilities (3 moderate, 2 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> chronik-client@3.0.0 build
> tsc

/work/modules/mock-chronik-client /work/abc-ci-builds/ecash-herald-tests
npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm warn deprecated glob@8.1.0: Glob versions prior to v9 are no longer supported
npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.

added 349 packages, and audited 352 packages in 2s

60 packages are looking for funding
  run `npm fund` for details

1 high severity vulnerability

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

> mock-chronik-client@2.1.3 build
> tsc

mocks/index.ts(31,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'ScriptUtxo'.
mocks/index.ts(39,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'Utxo'.
mocks/index.ts(91,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(105,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxInput'.
mocks/index.ts(113,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(129,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(146,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(156,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(182,17): error TS2353: Object literal may only specify known properties, and 'actualBurnAmount' does not exist in type 'TokenEntry'.
Build ecash-herald-tests failed with exit code 2

Tail of the build log:

/work/modules/chronik-client /work/abc-ci-builds/token-server-tests

> chronik-client@3.0.0 prepublish
> npm run build


> chronik-client@3.0.0 build
> tsc


added 265 packages, and audited 267 packages in 5s

48 packages are looking for funding
  run `npm fund` for details

5 vulnerabilities (3 moderate, 2 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> chronik-client@3.0.0 build
> tsc

/work/modules/mock-chronik-client /work/abc-ci-builds/token-server-tests
npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm warn deprecated glob@8.1.0: Glob versions prior to v9 are no longer supported
npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.

added 349 packages, and audited 352 packages in 2s

60 packages are looking for funding
  run `npm fund` for details

1 high severity vulnerability

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

> mock-chronik-client@2.1.3 build
> tsc

mocks/index.ts(31,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'ScriptUtxo'.
mocks/index.ts(39,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'Utxo'.
mocks/index.ts(91,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(105,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxInput'.
mocks/index.ts(113,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(129,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(146,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(156,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(182,17): error TS2353: Object literal may only specify known properties, and 'actualBurnAmount' does not exist in type 'TokenEntry'.
Build token-server-tests failed with exit code 2

Failed tests logs:

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

------- Stdout: -------
2025-02-08T23:49:51.221000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_block_txs_162
2025-02-08T23:49:53.138000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_block_txs.py", line 92, in run_test
    txs=[genesis_cb_tx()],
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:49:53.189000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:49:53.491000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_block_txs_162
2025-02-08T23:49:53.491000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_block_txs_162/test_framework.log
2025-02-08T23:49:53.491000Z TestFramework (ERROR): 
2025-02-08T23:49:53.491000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_block_txs_162' to consolidate all logs
2025-02-08T23:49:53.491000Z TestFramework (ERROR): 
2025-02-08T23:49:53.491000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:49:53.491000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:49:53.491000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_disable_token_index.py ======

------- Stdout: -------
2025-02-08T23:49:33.507000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_disable_token_index_119
2025-02-08T23:49:35.386000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_disable_token_index.py", line 72, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:49:35.437000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:49:35.689000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_disable_token_index_119
2025-02-08T23:49:35.689000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_disable_token_index_119/test_framework.log
2025-02-08T23:49:35.689000Z TestFramework (ERROR): 
2025-02-08T23:49:35.689000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_disable_token_index_119' to consolidate all logs
2025-02-08T23:49:35.689000Z TestFramework (ERROR): 
2025-02-08T23:49:35.689000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:49:35.689000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:49:35.689000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_pause.py ======

------- Stdout: -------
2025-02-08T23:49:52.615000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_pause_167
2025-02-08T23:49:54.447000Z TestFramework (INFO): Restart to allow pause
2025-02-08T23:49:55.554000Z TestFramework (INFO): Generate coin + mature for testing
2025-02-08T23:49:55.636000Z TestFramework (INFO): Pause Chronik indexing
2025-02-08T23:49:55.636000Z TestFramework (INFO): Send using P2P network
2025-02-08T23:49:55.687000Z TestFramework (INFO): Tx not yet picked up by chronik
2025-02-08T23:49:55.788000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T23:49:55.789000Z TestFramework (INFO): Chronik has now indexed the tx
2025-02-08T23:49:55.789000Z TestFramework (INFO): Pause Chronik indexing for block processing
2025-02-08T23:49:55.790000Z TestFramework (INFO): Create block with conflicting tx
2025-02-08T23:49:55.891000Z TestFramework (INFO): Block not indexed yet
2025-02-08T23:49:55.992000Z TestFramework (INFO): Chronik still believes the old tx exists
2025-02-08T23:49:55.992000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T23:49:55.993000Z TestFramework (INFO): Block now indexed and tx conflict resolved
2025-02-08T23:49:55.995000Z TestFramework (INFO): Pause Chronik for reorg
2025-02-08T23:49:55.995000Z TestFramework (INFO): Reorg last block by mining two blocks
2025-02-08T23:49:56.096000Z TestFramework (INFO): Reorg returns tx to mempool
2025-02-08T23:49:56.097000Z TestFramework (INFO): Chronik still thinks blockA exists
2025-02-08T23:49:56.198000Z TestFramework (INFO): Add block that mines the tx
2025-02-08T23:49:56.299000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T23:49:56.301000Z 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/chronik_pause.py", line 160, in run_test
    assert_equal(tx_proto.inputs[0].value, coinvalue)
                 ^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'TxInput' object has no attribute 'value'
2025-02-08T23:49:56.352000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:49:56.604000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_pause_167
2025-02-08T23:49:56.604000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_pause_167/test_framework.log
2025-02-08T23:49:56.604000Z TestFramework (ERROR): 
2025-02-08T23:49:56.604000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_pause_167' to consolidate all logs
2025-02-08T23:49:56.604000Z TestFramework (ERROR): 
2025-02-08T23:49:56.604000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:49:56.604000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:49:56.604000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_confirmed_txs.py ======

------- Stdout: -------
2025-02-08T23:48:47.665000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_script_confirmed_txs_66
2025-02-08T23:48:49.563000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_confirmed_txs.py", line 124, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:48:49.614000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:48:49.866000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_script_confirmed_txs_66
2025-02-08T23:48:49.866000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_script_confirmed_txs_66/test_framework.log
2025-02-08T23:48:49.866000Z TestFramework (ERROR): 
2025-02-08T23:48:49.866000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_script_confirmed_txs_66' to consolidate all logs
2025-02-08T23:48:49.866000Z TestFramework (ERROR): 
2025-02-08T23:48:49.866000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:48:49.866000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:48:49.866000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_history.py ======

------- Stdout: -------
2025-02-08T23:48:57.120000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_script_history_75
2025-02-08T23:48:59.076000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_history.py", line 127, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:48:59.127000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:48:59.429000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_script_history_75
2025-02-08T23:48:59.429000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_script_history_75/test_framework.log
2025-02-08T23:48:59.429000Z TestFramework (ERROR): 
2025-02-08T23:48:59.429000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_script_history_75' to consolidate all logs
2025-02-08T23:48:59.429000Z TestFramework (ERROR): 
2025-02-08T23:48:59.429000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:48:59.429000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:48:59.429000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py ======

------- Stdout: -------
2025-02-08T23:49:53.370000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_script_unconfirmed_txs_170
2025-02-08T23:49:55.378000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_unconfirmed_txs.py", line 151, in run_test
    pb.TxInput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxInput has no "value" field.
2025-02-08T23:49:55.430000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:49:55.681000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_script_unconfirmed_txs_170
2025-02-08T23:49:55.681000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_script_unconfirmed_txs_170/test_framework.log
2025-02-08T23:49:55.681000Z TestFramework (ERROR): 
2025-02-08T23:49:55.681000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_script_unconfirmed_txs_170' to consolidate all logs
2025-02-08T23:49:55.681000Z TestFramework (ERROR): 
2025-02-08T23:49:55.681000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:49:55.681000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:49:55.681000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_utxos.py ======

------- Stdout: -------
2025-02-08T23:50:08.677000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_script_utxos_233
2025-02-08T23:50:10.590000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_utxos.py", line 91, in run_test
    pb.ScriptUtxo(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message ScriptUtxo has no "value" field.
2025-02-08T23:50:10.641000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:50:10.942000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_script_utxos_233
2025-02-08T23:50:10.942000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_script_utxos_233/test_framework.log
2025-02-08T23:50:10.943000Z TestFramework (ERROR): 
2025-02-08T23:50:10.943000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_script_utxos_233' to consolidate all logs
2025-02-08T23:50:10.943000Z TestFramework (ERROR): 
2025-02-08T23:50:10.943000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:50:10.943000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:50:10.943000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_scripthash.py ======

------- Stdout: -------
2025-02-08T23:49:35.545000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_scripthash_121
2025-02-08T23:49:37.489000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_scripthash.py", line 51, in run_test
    self.test_valid_requests()
  File "/work/test/functional/chronik_scripthash.py", line 102, in test_valid_requests
    txs=[genesis_cb_tx()], num_pages=1, num_txs=1
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:49:37.541000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:49:37.792000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_scripthash_121
2025-02-08T23:49:37.792000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_scripthash_121/test_framework.log
2025-02-08T23:49:37.792000Z TestFramework (ERROR): 
2025-02-08T23:49:37.792000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_scripthash_121' to consolidate all logs
2025-02-08T23:49:37.792000Z TestFramework (ERROR): 
2025-02-08T23:49:37.792000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:49:37.792000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:49:37.792000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_alp.py ======

------- Stdout: -------
2025-02-08T23:49:35.808000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_alp_122
2025-02-08T23:49:37.754000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_alp.py", line 100, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:49:37.805000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:49:38.056000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_alp_122
2025-02-08T23:49:38.056000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_alp_122/test_framework.log
2025-02-08T23:49:38.056000Z TestFramework (ERROR): 
2025-02-08T23:49:38.056000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_alp_122' to consolidate all logs
2025-02-08T23:49:38.056000Z TestFramework (ERROR): 
2025-02-08T23:49:38.056000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:49:38.056000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:49:38.056000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_broadcast_txs.py ======

------- Stdout: -------
2025-02-08T23:50:08.824000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_broadcast_txs_235
2025-02-08T23:50:10.686000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_broadcast_txs.py", line 76, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:50:10.738000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:50:10.989000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_broadcast_txs_235
2025-02-08T23:50:10.989000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_broadcast_txs_235/test_framework.log
2025-02-08T23:50:10.989000Z TestFramework (ERROR): 
2025-02-08T23:50:10.989000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_broadcast_txs_235' to consolidate all logs
2025-02-08T23:50:10.989000Z TestFramework (ERROR): 
2025-02-08T23:50:10.989000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:50:10.990000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:50:10.990000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_burn.py ======

------- Stdout: -------
2025-02-08T23:50:08.954000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_burn_236
2025-02-08T23:50:10.833000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_burn.py", line 92, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:50:10.884000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:50:11.135000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_burn_236
2025-02-08T23:50:11.135000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_burn_236/test_framework.log
2025-02-08T23:50:11.135000Z TestFramework (ERROR): 
2025-02-08T23:50:11.136000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_burn_236' to consolidate all logs
2025-02-08T23:50:11.136000Z TestFramework (ERROR): 
2025-02-08T23:50:11.136000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:50:11.136000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:50:11.136000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_id_group.py ======

------- Stdout: -------
2025-02-08T23:49:53.629000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_id_group_172
2025-02-08T23:49:55.616000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_id_group.py", line 95, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:49:55.668000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:49:55.919000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_id_group_172
2025-02-08T23:49:55.919000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_id_group_172/test_framework.log
2025-02-08T23:49:55.919000Z TestFramework (ERROR): 
2025-02-08T23:49:55.919000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_id_group_172' to consolidate all logs
2025-02-08T23:49:55.919000Z TestFramework (ERROR): 
2025-02-08T23:49:55.919000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:49:55.919000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:49:55.919000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_script_group.py ======

------- Stdout: -------
2025-02-08T23:50:09.314000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_script_group_238
2025-02-08T23:50:11.192000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_script_group.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:50:11.244000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:50:11.495000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_script_group_238
2025-02-08T23:50:11.495000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_script_group_238/test_framework.log
2025-02-08T23:50:11.495000Z TestFramework (ERROR): 
2025-02-08T23:50:11.495000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_script_group_238' to consolidate all logs
2025-02-08T23:50:11.495000Z TestFramework (ERROR): 
2025-02-08T23:50:11.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-02-08T23:50:11.495000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:50:11.496000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_fungible.py ======

------- Stdout: -------
2025-02-08T23:50:09.880000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_slp_fungible_239
2025-02-08T23:50:11.778000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_fungible.py", line 80, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:50:11.830000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:50:12.081000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_slp_fungible_239
2025-02-08T23:50:12.081000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_slp_fungible_239/test_framework.log
2025-02-08T23:50:12.081000Z TestFramework (ERROR): 
2025-02-08T23:50:12.081000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_slp_fungible_239' to consolidate all logs
2025-02-08T23:50:12.081000Z TestFramework (ERROR): 
2025-02-08T23:50:12.081000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:50:12.081000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:50:12.081000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py ======

------- Stdout: -------
2025-02-08T23:49:53.784000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_slp_mint_vault_173
2025-02-08T23:49:55.789000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_mint_vault.py", line 119, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:49:55.841000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:49:56.092000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_slp_mint_vault_173
2025-02-08T23:49:56.092000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_slp_mint_vault_173/test_framework.log
2025-02-08T23:49:56.092000Z TestFramework (ERROR): 
2025-02-08T23:49:56.092000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_slp_mint_vault_173' to consolidate all logs
2025-02-08T23:49:56.092000Z TestFramework (ERROR): 
2025-02-08T23:49:56.092000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:49:56.092000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:49:56.093000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_nft1.py ======

------- Stdout: -------
2025-02-08T23:50:09.886000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_slp_nft1_240
2025-02-08T23:50:11.790000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_nft1.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:50:11.841000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:50:12.092000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_slp_nft1_240
2025-02-08T23:50:12.093000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_slp_nft1_240/test_framework.log
2025-02-08T23:50:12.093000Z TestFramework (ERROR): 
2025-02-08T23:50:12.093000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_token_slp_nft1_240' to consolidate all logs
2025-02-08T23:50:12.093000Z TestFramework (ERROR): 
2025-02-08T23:50:12.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-02-08T23:50:12.093000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:50:12.093000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_tx.py ======

------- Stdout: -------
2025-02-08T23:49:54.010000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_tx_174
2025-02-08T23:49:55.903000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_tx.py", line 64, in run_test
    assert_equal(chronik.tx(GENESIS_CB_TXID).ok(), genesis_cb_tx())
                                                   ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:49:55.955000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:49:56.256000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_tx_174
2025-02-08T23:49:56.256000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_tx_174/test_framework.log
2025-02-08T23:49:56.256000Z TestFramework (ERROR): 
2025-02-08T23:49:56.256000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_tx_174' to consolidate all logs
2025-02-08T23:49:56.256000Z TestFramework (ERROR): 
2025-02-08T23:49:56.256000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:49:56.257000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:49:56.257000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_ws.py ======

------- Stdout: -------
2025-02-08T23:47:26.902000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_ws_13
2025-02-08T23:47:47.834000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_ws.py", line 120, in run_test
    coinbase_data = coinbase_data_from_block(tip)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/chronik_ws.py", line 116, in coinbase_data_from_block
    return pb.CoinbaseData(
           ^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 535, in init
    copy.add(**val)
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/containers.py", line 276, in add
    new_element = self._message_descriptor._concrete_class(**kwargs)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:47:47.886000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:47:48.037000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_ws_13
2025-02-08T23:47:48.038000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_ws_13/test_framework.log
2025-02-08T23:47:48.038000Z TestFramework (ERROR): 
2025-02-08T23:47:48.038000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250208_234659/chronik_ws_13' to consolidate all logs
2025-02-08T23:47:48.038000Z TestFramework (ERROR): 
2025-02-08T23:47:48.038000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:47:48.038000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:47:48.038000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: chronik_block_txs.py
Bitcoin ABC functional tests: chronik_disable_token_index.py
Bitcoin ABC functional tests: chronik_pause.py
Bitcoin ABC functional tests: chronik_script_confirmed_txs.py
Bitcoin ABC functional tests: chronik_script_history.py
Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py
Bitcoin ABC functional tests: chronik_script_utxos.py
Bitcoin ABC functional tests: chronik_scripthash.py
Bitcoin ABC functional tests: chronik_token_alp.py
Bitcoin ABC functional tests: chronik_token_broadcast_txs.py
Bitcoin ABC functional tests: chronik_token_burn.py
Bitcoin ABC functional tests: chronik_token_id_group.py
Bitcoin ABC functional tests: chronik_token_script_group.py
Bitcoin ABC functional tests: chronik_token_slp_fungible.py
Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py
Bitcoin ABC functional tests: chronik_token_slp_nft1.py
Bitcoin ABC functional tests: chronik_tx.py
Bitcoin ABC functional tests: chronik_ws.py

Failed tests logs:

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

------- Stdout: -------
2025-02-08T23:51:48.869000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_block_txs_162
2025-02-08T23:51:49.579000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_block_txs.py", line 92, in run_test
    txs=[genesis_cb_tx()],
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:51:49.631000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:51:49.782000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_block_txs_162
2025-02-08T23:51:49.782000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_block_txs_162/test_framework.log
2025-02-08T23:51:49.782000Z TestFramework (ERROR): 
2025-02-08T23:51:49.782000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_block_txs_162' to consolidate all logs
2025-02-08T23:51:49.782000Z TestFramework (ERROR): 
2025-02-08T23:51:49.782000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:51:49.782000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:51:49.782000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_disable_token_index.py ======

------- Stdout: -------
2025-02-08T23:51:39.726000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_disable_token_index_119
2025-02-08T23:51:40.700000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_disable_token_index.py", line 72, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:51:40.751000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:51:40.853000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_disable_token_index_119
2025-02-08T23:51:40.853000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_disable_token_index_119/test_framework.log
2025-02-08T23:51:40.853000Z TestFramework (ERROR): 
2025-02-08T23:51:40.853000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_disable_token_index_119' to consolidate all logs
2025-02-08T23:51:40.853000Z TestFramework (ERROR): 
2025-02-08T23:51:40.853000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:51:40.853000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:51:40.853000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_pause.py ======

------- Stdout: -------
2025-02-08T23:51:50.090000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_pause_167
2025-02-08T23:51:50.967000Z TestFramework (INFO): Restart to allow pause
2025-02-08T23:51:51.422000Z TestFramework (INFO): Generate coin + mature for testing
2025-02-08T23:51:51.513000Z TestFramework (INFO): Pause Chronik indexing
2025-02-08T23:51:51.514000Z TestFramework (INFO): Send using P2P network
2025-02-08T23:51:51.565000Z TestFramework (INFO): Tx not yet picked up by chronik
2025-02-08T23:51:51.665000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T23:51:51.667000Z TestFramework (INFO): Chronik has now indexed the tx
2025-02-08T23:51:51.667000Z TestFramework (INFO): Pause Chronik indexing for block processing
2025-02-08T23:51:51.667000Z TestFramework (INFO): Create block with conflicting tx
2025-02-08T23:51:51.769000Z TestFramework (INFO): Block not indexed yet
2025-02-08T23:51:51.870000Z TestFramework (INFO): Chronik still believes the old tx exists
2025-02-08T23:51:51.871000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T23:51:51.872000Z TestFramework (INFO): Block now indexed and tx conflict resolved
2025-02-08T23:51:51.874000Z TestFramework (INFO): Pause Chronik for reorg
2025-02-08T23:51:51.874000Z TestFramework (INFO): Reorg last block by mining two blocks
2025-02-08T23:51:51.975000Z TestFramework (INFO): Reorg returns tx to mempool
2025-02-08T23:51:51.976000Z TestFramework (INFO): Chronik still thinks blockA exists
2025-02-08T23:51:52.077000Z TestFramework (INFO): Add block that mines the tx
2025-02-08T23:51:52.179000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-08T23:51:52.181000Z 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/chronik_pause.py", line 160, in run_test
    assert_equal(tx_proto.inputs[0].value, coinvalue)
                 ^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'TxInput' object has no attribute 'value'
2025-02-08T23:51:52.233000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:51:52.334000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_pause_167
2025-02-08T23:51:52.334000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_pause_167/test_framework.log
2025-02-08T23:51:52.334000Z TestFramework (ERROR): 
2025-02-08T23:51:52.335000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_pause_167' to consolidate all logs
2025-02-08T23:51:52.335000Z TestFramework (ERROR): 
2025-02-08T23:51:52.335000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:51:52.335000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:51:52.335000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_confirmed_txs.py ======

------- Stdout: -------
2025-02-08T23:51:16.381000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_script_confirmed_txs_66
2025-02-08T23:51:17.098000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_confirmed_txs.py", line 124, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:51:17.150000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:51:17.301000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_script_confirmed_txs_66
2025-02-08T23:51:17.301000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_script_confirmed_txs_66/test_framework.log
2025-02-08T23:51:17.301000Z TestFramework (ERROR): 
2025-02-08T23:51:17.301000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_script_confirmed_txs_66' to consolidate all logs
2025-02-08T23:51:17.301000Z TestFramework (ERROR): 
2025-02-08T23:51:17.301000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:51:17.301000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:51:17.301000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_history.py ======

------- Stdout: -------
2025-02-08T23:51:21.589000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_script_history_75
2025-02-08T23:51:22.296000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_history.py", line 127, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:51:22.347000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:51:22.499000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_script_history_75
2025-02-08T23:51:22.499000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_script_history_75/test_framework.log
2025-02-08T23:51:22.499000Z TestFramework (ERROR): 
2025-02-08T23:51:22.499000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_script_history_75' to consolidate all logs
2025-02-08T23:51:22.499000Z TestFramework (ERROR): 
2025-02-08T23:51:22.499000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:51:22.499000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:51:22.500000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py ======

------- Stdout: -------
2025-02-08T23:51:50.233000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_script_unconfirmed_txs_170
2025-02-08T23:51:51.051000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_unconfirmed_txs.py", line 151, in run_test
    pb.TxInput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxInput has no "value" field.
2025-02-08T23:51:51.102000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:51:51.203000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_script_unconfirmed_txs_170
2025-02-08T23:51:51.203000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_script_unconfirmed_txs_170/test_framework.log
2025-02-08T23:51:51.203000Z TestFramework (ERROR): 
2025-02-08T23:51:51.204000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_script_unconfirmed_txs_170' to consolidate all logs
2025-02-08T23:51:51.204000Z TestFramework (ERROR): 
2025-02-08T23:51:51.204000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:51:51.204000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:51:51.204000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_utxos.py ======

------- Stdout: -------
2025-02-08T23:52:00.569000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_script_utxos_233
2025-02-08T23:52:01.552000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_utxos.py", line 91, in run_test
    pb.ScriptUtxo(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message ScriptUtxo has no "value" field.
2025-02-08T23:52:01.604000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:52:01.755000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_script_utxos_233
2025-02-08T23:52:01.755000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_script_utxos_233/test_framework.log
2025-02-08T23:52:01.755000Z TestFramework (ERROR): 
2025-02-08T23:52:01.755000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_script_utxos_233' to consolidate all logs
2025-02-08T23:52:01.755000Z TestFramework (ERROR): 
2025-02-08T23:52:01.755000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:52:01.756000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:52:01.756000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_scripthash.py ======

------- Stdout: -------
2025-02-08T23:51:40.590000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_scripthash_121
2025-02-08T23:51:41.584000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_scripthash.py", line 51, in run_test
    self.test_valid_requests()
  File "/work/test/functional/chronik_scripthash.py", line 102, in test_valid_requests
    txs=[genesis_cb_tx()], num_pages=1, num_txs=1
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:51:41.636000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:51:41.788000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_scripthash_121
2025-02-08T23:51:41.788000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_scripthash_121/test_framework.log
2025-02-08T23:51:41.788000Z TestFramework (ERROR): 
2025-02-08T23:51:41.788000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_scripthash_121' to consolidate all logs
2025-02-08T23:51:41.788000Z TestFramework (ERROR): 
2025-02-08T23:51:41.788000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:51:41.788000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:51:41.788000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_alp.py ======

------- Stdout: -------
2025-02-08T23:51:41.010000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_alp_122
2025-02-08T23:51:41.855000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_alp.py", line 100, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:51:41.906000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:51:42.007000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_alp_122
2025-02-08T23:51:42.007000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_alp_122/test_framework.log
2025-02-08T23:51:42.007000Z TestFramework (ERROR): 
2025-02-08T23:51:42.007000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_alp_122' to consolidate all logs
2025-02-08T23:51:42.007000Z TestFramework (ERROR): 
2025-02-08T23:51:42.008000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:51:42.008000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:51:42.008000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_broadcast_txs.py ======

------- Stdout: -------
2025-02-08T23:52:00.881000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_broadcast_txs_235
2025-02-08T23:52:01.861000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_broadcast_txs.py", line 76, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:52:01.864000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:52:02.016000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_broadcast_txs_235
2025-02-08T23:52:02.016000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_broadcast_txs_235/test_framework.log
2025-02-08T23:52:02.016000Z TestFramework (ERROR): 
2025-02-08T23:52:02.016000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_broadcast_txs_235' to consolidate all logs
2025-02-08T23:52:02.016000Z TestFramework (ERROR): 
2025-02-08T23:52:02.016000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:52:02.016000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:52:02.016000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_burn.py ======

------- Stdout: -------
2025-02-08T23:52:00.901000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_burn_236
2025-02-08T23:52:01.603000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_burn.py", line 92, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:52:01.655000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:52:01.756000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_burn_236
2025-02-08T23:52:01.756000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_burn_236/test_framework.log
2025-02-08T23:52:01.756000Z TestFramework (ERROR): 
2025-02-08T23:52:01.756000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_burn_236' to consolidate all logs
2025-02-08T23:52:01.756000Z TestFramework (ERROR): 
2025-02-08T23:52:01.756000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:52:01.756000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:52:01.756000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_id_group.py ======

------- Stdout: -------
2025-02-08T23:51:50.423000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_id_group_172
2025-02-08T23:51:51.267000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_id_group.py", line 95, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:51:51.318000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:51:51.520000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_id_group_172
2025-02-08T23:51:51.520000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_id_group_172/test_framework.log
2025-02-08T23:51:51.520000Z TestFramework (ERROR): 
2025-02-08T23:51:51.520000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_id_group_172' to consolidate all logs
2025-02-08T23:51:51.520000Z TestFramework (ERROR): 
2025-02-08T23:51:51.520000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:51:51.520000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:51:51.520000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_script_group.py ======

------- Stdout: -------
2025-02-08T23:52:01.223000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_script_group_238
2025-02-08T23:52:01.957000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_script_group.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:52:02.009000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:52:02.110000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_script_group_238
2025-02-08T23:52:02.110000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_script_group_238/test_framework.log
2025-02-08T23:52:02.110000Z TestFramework (ERROR): 
2025-02-08T23:52:02.110000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_script_group_238' to consolidate all logs
2025-02-08T23:52:02.110000Z TestFramework (ERROR): 
2025-02-08T23:52:02.110000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:52:02.110000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:52:02.110000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_fungible.py ======

------- Stdout: -------
2025-02-08T23:52:01.262000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_slp_fungible_239
2025-02-08T23:52:02.224000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_fungible.py", line 80, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:52:02.276000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:52:02.377000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_slp_fungible_239
2025-02-08T23:52:02.377000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_slp_fungible_239/test_framework.log
2025-02-08T23:52:02.377000Z TestFramework (ERROR): 
2025-02-08T23:52:02.377000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_slp_fungible_239' to consolidate all logs
2025-02-08T23:52:02.377000Z TestFramework (ERROR): 
2025-02-08T23:52:02.377000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:52:02.378000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:52:02.378000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py ======

------- Stdout: -------
2025-02-08T23:51:50.611000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_slp_mint_vault_173
2025-02-08T23:51:51.461000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_mint_vault.py", line 119, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:51:51.513000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:51:51.614000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_slp_mint_vault_173
2025-02-08T23:51:51.614000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_slp_mint_vault_173/test_framework.log
2025-02-08T23:51:51.614000Z TestFramework (ERROR): 
2025-02-08T23:51:51.614000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_slp_mint_vault_173' to consolidate all logs
2025-02-08T23:51:51.614000Z TestFramework (ERROR): 
2025-02-08T23:51:51.614000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:51:51.614000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:51:51.614000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_nft1.py ======

------- Stdout: -------
2025-02-08T23:52:01.310000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_slp_nft1_240
2025-02-08T23:52:02.040000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_nft1.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-08T23:52:02.091000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:52:02.192000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_slp_nft1_240
2025-02-08T23:52:02.193000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_slp_nft1_240/test_framework.log
2025-02-08T23:52:02.193000Z TestFramework (ERROR): 
2025-02-08T23:52:02.193000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_token_slp_nft1_240' to consolidate all logs
2025-02-08T23:52:02.193000Z TestFramework (ERROR): 
2025-02-08T23:52:02.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-02-08T23:52:02.193000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:52:02.193000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_tx.py ======

------- Stdout: -------
2025-02-08T23:51:50.825000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_tx_174
2025-02-08T23:51:51.664000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_tx.py", line 64, in run_test
    assert_equal(chronik.tx(GENESIS_CB_TXID).ok(), genesis_cb_tx())
                                                   ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:51:51.716000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:51:51.867000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_tx_174
2025-02-08T23:51:51.867000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_tx_174/test_framework.log
2025-02-08T23:51:51.867000Z TestFramework (ERROR): 
2025-02-08T23:51:51.867000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_tx_174' to consolidate all logs
2025-02-08T23:51:51.867000Z TestFramework (ERROR): 
2025-02-08T23:51:51.867000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:51:51.867000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:51:51.867000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_ws.py ======

------- Stdout: -------
2025-02-08T23:50:05.447000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_ws_13
2025-02-08T23:50:24.424000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_ws.py", line 120, in run_test
    coinbase_data = coinbase_data_from_block(tip)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/chronik_ws.py", line 116, in coinbase_data_from_block
    return pb.CoinbaseData(
           ^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 535, in init
    copy.add(**val)
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/containers.py", line 276, in add
    new_element = self._message_descriptor._concrete_class(**kwargs)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-08T23:50:24.476000Z TestFramework (INFO): Stopping nodes
2025-02-08T23:50:24.577000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_ws_13
2025-02-08T23:50:24.577000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_ws_13/test_framework.log
2025-02-08T23:50:24.577000Z TestFramework (ERROR): 
2025-02-08T23:50:24.578000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250208_234940/chronik_ws_13' to consolidate all logs
2025-02-08T23:50:24.578000Z TestFramework (ERROR): 
2025-02-08T23:50:24.578000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-08T23:50:24.578000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-08T23:50:24.578000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: chronik_block_txs.py
Bitcoin ABC functional tests: chronik_disable_token_index.py
Bitcoin ABC functional tests: chronik_pause.py
Bitcoin ABC functional tests: chronik_script_confirmed_txs.py
Bitcoin ABC functional tests: chronik_script_history.py
Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py
Bitcoin ABC functional tests: chronik_script_utxos.py
Bitcoin ABC functional tests: chronik_scripthash.py
Bitcoin ABC functional tests: chronik_token_alp.py
Bitcoin ABC functional tests: chronik_token_broadcast_txs.py
Bitcoin ABC functional tests: chronik_token_burn.py
Bitcoin ABC functional tests: chronik_token_id_group.py
Bitcoin ABC functional tests: chronik_token_script_group.py
Bitcoin ABC functional tests: chronik_token_slp_fungible.py
Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py
Bitcoin ABC functional tests: chronik_token_slp_nft1.py
Bitcoin ABC functional tests: chronik_tx.py
Bitcoin ABC functional tests: chronik_ws.py

converting some cashtab mocks, cashtab chronik and airdrop tests pass

Tail of the build log:

/work/modules/chronik-client /work/abc-ci-builds/token-server-tests

> chronik-client@3.0.0 prepublish
> npm run build


> chronik-client@3.0.0 build
> tsc


added 265 packages, and audited 267 packages in 5s

48 packages are looking for funding
  run `npm fund` for details

5 vulnerabilities (3 moderate, 2 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> chronik-client@3.0.0 build
> tsc

/work/modules/mock-chronik-client /work/abc-ci-builds/token-server-tests
npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm warn deprecated glob@8.1.0: Glob versions prior to v9 are no longer supported
npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.

added 349 packages, and audited 352 packages in 2s

60 packages are looking for funding
  run `npm fund` for details

1 high severity vulnerability

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

> mock-chronik-client@2.1.3 build
> tsc

mocks/index.ts(31,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'ScriptUtxo'.
mocks/index.ts(39,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'Utxo'.
mocks/index.ts(91,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(105,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxInput'.
mocks/index.ts(113,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(129,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(146,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(156,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(182,17): error TS2353: Object literal may only specify known properties, and 'actualBurnAmount' does not exist in type 'TokenEntry'.
Build token-server-tests failed with exit code 2

Failed tests logs:

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

------- Stdout: -------
2025-02-09T23:04:51.875000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_block_txs_162
2025-02-09T23:04:54.060000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_block_txs.py", line 92, in run_test
    txs=[genesis_cb_tx()],
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:04:54.111000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:04:54.413000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_block_txs_162
2025-02-09T23:04:54.413000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_block_txs_162/test_framework.log
2025-02-09T23:04:54.413000Z TestFramework (ERROR): 
2025-02-09T23:04:54.413000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_block_txs_162' to consolidate all logs
2025-02-09T23:04:54.413000Z TestFramework (ERROR): 
2025-02-09T23:04:54.413000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:04:54.413000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:04:54.413000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_disable_token_index.py ======

------- Stdout: -------
2025-02-09T23:04:34.325000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_disable_token_index_119
2025-02-09T23:04:36.455000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_disable_token_index.py", line 72, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:04:36.507000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:04:36.758000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_disable_token_index_119
2025-02-09T23:04:36.758000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_disable_token_index_119/test_framework.log
2025-02-09T23:04:36.759000Z TestFramework (ERROR): 
2025-02-09T23:04:36.759000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_disable_token_index_119' to consolidate all logs
2025-02-09T23:04:36.759000Z TestFramework (ERROR): 
2025-02-09T23:04:36.759000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:04:36.759000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:04:36.759000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_pause.py ======

------- Stdout: -------
2025-02-09T23:04:53.957000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_pause_167
2025-02-09T23:04:55.888000Z TestFramework (INFO): Restart to allow pause
2025-02-09T23:04:57.000000Z TestFramework (INFO): Generate coin + mature for testing
2025-02-09T23:04:57.131000Z TestFramework (INFO): Pause Chronik indexing
2025-02-09T23:04:57.132000Z TestFramework (INFO): Send using P2P network
2025-02-09T23:04:57.183000Z TestFramework (INFO): Tx not yet picked up by chronik
2025-02-09T23:04:57.283000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-09T23:04:57.284000Z TestFramework (INFO): Chronik has now indexed the tx
2025-02-09T23:04:57.285000Z TestFramework (INFO): Pause Chronik indexing for block processing
2025-02-09T23:04:57.285000Z TestFramework (INFO): Create block with conflicting tx
2025-02-09T23:04:57.387000Z TestFramework (INFO): Block not indexed yet
2025-02-09T23:04:57.487000Z TestFramework (INFO): Chronik still believes the old tx exists
2025-02-09T23:04:57.488000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-09T23:04:57.489000Z TestFramework (INFO): Block now indexed and tx conflict resolved
2025-02-09T23:04:57.490000Z TestFramework (INFO): Pause Chronik for reorg
2025-02-09T23:04:57.490000Z TestFramework (INFO): Reorg last block by mining two blocks
2025-02-09T23:04:57.591000Z TestFramework (INFO): Reorg returns tx to mempool
2025-02-09T23:04:57.592000Z TestFramework (INFO): Chronik still thinks blockA exists
2025-02-09T23:04:57.693000Z TestFramework (INFO): Add block that mines the tx
2025-02-09T23:04:57.794000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-09T23:04:57.796000Z 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/chronik_pause.py", line 160, in run_test
    assert_equal(tx_proto.inputs[0].value, coinvalue)
                 ^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'TxInput' object has no attribute 'value'
2025-02-09T23:04:57.847000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:04:58.048000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_pause_167
2025-02-09T23:04:58.049000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_pause_167/test_framework.log
2025-02-09T23:04:58.049000Z TestFramework (ERROR): 
2025-02-09T23:04:58.049000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_pause_167' to consolidate all logs
2025-02-09T23:04:58.049000Z TestFramework (ERROR): 
2025-02-09T23:04:58.049000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:04:58.049000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:04:58.049000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_confirmed_txs.py ======

------- Stdout: -------
2025-02-09T23:03:47.127000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_script_confirmed_txs_66
2025-02-09T23:03:49.005000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_confirmed_txs.py", line 124, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:03:49.056000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:03:49.307000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_script_confirmed_txs_66
2025-02-09T23:03:49.307000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_script_confirmed_txs_66/test_framework.log
2025-02-09T23:03:49.308000Z TestFramework (ERROR): 
2025-02-09T23:03:49.308000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_script_confirmed_txs_66' to consolidate all logs
2025-02-09T23:03:49.308000Z TestFramework (ERROR): 
2025-02-09T23:03:49.308000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:03:49.308000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:03:49.308000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_history.py ======

------- Stdout: -------
2025-02-09T23:03:57.266000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_script_history_75
2025-02-09T23:03:59.195000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_history.py", line 127, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:03:59.247000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:03:59.549000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_script_history_75
2025-02-09T23:03:59.549000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_script_history_75/test_framework.log
2025-02-09T23:03:59.549000Z TestFramework (ERROR): 
2025-02-09T23:03:59.550000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_script_history_75' to consolidate all logs
2025-02-09T23:03:59.550000Z TestFramework (ERROR): 
2025-02-09T23:03:59.550000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:03:59.551000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:03:59.551000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py ======

------- Stdout: -------
2025-02-09T23:04:54.686000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_script_unconfirmed_txs_170
2025-02-09T23:04:56.949000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_unconfirmed_txs.py", line 151, in run_test
    pb.TxInput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxInput has no "value" field.
2025-02-09T23:04:57.001000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:04:57.254000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_script_unconfirmed_txs_170
2025-02-09T23:04:57.254000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_script_unconfirmed_txs_170/test_framework.log
2025-02-09T23:04:57.254000Z TestFramework (ERROR): 
2025-02-09T23:04:57.254000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_script_unconfirmed_txs_170' to consolidate all logs
2025-02-09T23:04:57.254000Z TestFramework (ERROR): 
2025-02-09T23:04:57.254000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:04:57.255000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:04:57.255000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_utxos.py ======

------- Stdout: -------
2025-02-09T23:05:11.492000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_script_utxos_233
2025-02-09T23:05:14.563000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_utxos.py", line 91, in run_test
    pb.ScriptUtxo(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message ScriptUtxo has no "value" field.
2025-02-09T23:05:14.614000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:05:15.066000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_script_utxos_233
2025-02-09T23:05:15.067000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_script_utxos_233/test_framework.log
2025-02-09T23:05:15.067000Z TestFramework (ERROR): 
2025-02-09T23:05:15.067000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_script_utxos_233' to consolidate all logs
2025-02-09T23:05:15.067000Z TestFramework (ERROR): 
2025-02-09T23:05:15.067000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:05:15.068000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:05:15.068000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_scripthash.py ======

------- Stdout: -------
2025-02-09T23:04:36.368000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_scripthash_121
2025-02-09T23:04:38.604000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_scripthash.py", line 51, in run_test
    self.test_valid_requests()
  File "/work/test/functional/chronik_scripthash.py", line 102, in test_valid_requests
    txs=[genesis_cb_tx()], num_pages=1, num_txs=1
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:04:38.655000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:04:38.907000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_scripthash_121
2025-02-09T23:04:38.907000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_scripthash_121/test_framework.log
2025-02-09T23:04:38.907000Z TestFramework (ERROR): 
2025-02-09T23:04:38.907000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_scripthash_121' to consolidate all logs
2025-02-09T23:04:38.907000Z TestFramework (ERROR): 
2025-02-09T23:04:38.907000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:04:38.907000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:04:38.907000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_alp.py ======

------- Stdout: -------
2025-02-09T23:04:36.405000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_alp_122
2025-02-09T23:04:38.643000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_alp.py", line 100, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:04:38.695000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:04:38.946000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_alp_122
2025-02-09T23:04:38.946000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_alp_122/test_framework.log
2025-02-09T23:04:38.946000Z TestFramework (ERROR): 
2025-02-09T23:04:38.946000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_alp_122' to consolidate all logs
2025-02-09T23:04:38.946000Z TestFramework (ERROR): 
2025-02-09T23:04:38.946000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:04:38.946000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:04:38.946000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_broadcast_txs.py ======

------- Stdout: -------
2025-02-09T23:05:11.679000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_broadcast_txs_235
2025-02-09T23:05:14.693000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_broadcast_txs.py", line 76, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:05:14.744000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:05:15.096000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_broadcast_txs_235
2025-02-09T23:05:15.096000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_broadcast_txs_235/test_framework.log
2025-02-09T23:05:15.096000Z TestFramework (ERROR): 
2025-02-09T23:05:15.096000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_broadcast_txs_235' to consolidate all logs
2025-02-09T23:05:15.096000Z TestFramework (ERROR): 
2025-02-09T23:05:15.096000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:05:15.096000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:05:15.096000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_burn.py ======

------- Stdout: -------
2025-02-09T23:05:12.378000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_burn_236
2025-02-09T23:05:15.425000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_burn.py", line 92, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:05:15.476000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:05:15.828000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_burn_236
2025-02-09T23:05:15.828000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_burn_236/test_framework.log
2025-02-09T23:05:15.828000Z TestFramework (ERROR): 
2025-02-09T23:05:15.828000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_burn_236' to consolidate all logs
2025-02-09T23:05:15.828000Z TestFramework (ERROR): 
2025-02-09T23:05:15.828000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:05:15.829000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:05:15.829000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_id_group.py ======

------- Stdout: -------
2025-02-09T23:04:54.838000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_id_group_172
2025-02-09T23:04:56.864000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_id_group.py", line 95, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:04:56.916000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:04:57.167000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_id_group_172
2025-02-09T23:04:57.167000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_id_group_172/test_framework.log
2025-02-09T23:04:57.167000Z TestFramework (ERROR): 
2025-02-09T23:04:57.167000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_id_group_172' to consolidate all logs
2025-02-09T23:04:57.167000Z TestFramework (ERROR): 
2025-02-09T23:04:57.167000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:04:57.168000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:04:57.168000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_script_group.py ======

------- Stdout: -------
2025-02-09T23:05:13.549000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_script_group_238
2025-02-09T23:05:16.574000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_script_group.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:05:16.625000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:05:16.976000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_script_group_238
2025-02-09T23:05:16.976000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_script_group_238/test_framework.log
2025-02-09T23:05:16.976000Z TestFramework (ERROR): 
2025-02-09T23:05:16.976000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_script_group_238' to consolidate all logs
2025-02-09T23:05:16.976000Z TestFramework (ERROR): 
2025-02-09T23:05:16.977000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:05:16.977000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:05:16.977000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_fungible.py ======

------- Stdout: -------
2025-02-09T23:05:13.773000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_slp_fungible_239
2025-02-09T23:05:16.775000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_fungible.py", line 80, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:05:16.827000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:05:17.178000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_slp_fungible_239
2025-02-09T23:05:17.178000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_slp_fungible_239/test_framework.log
2025-02-09T23:05:17.178000Z TestFramework (ERROR): 
2025-02-09T23:05:17.178000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_slp_fungible_239' to consolidate all logs
2025-02-09T23:05:17.178000Z TestFramework (ERROR): 
2025-02-09T23:05:17.178000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:05:17.178000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:05:17.178000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py ======

------- Stdout: -------
2025-02-09T23:04:55.064000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_slp_mint_vault_173
2025-02-09T23:04:57.127000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_mint_vault.py", line 119, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:04:57.179000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:04:57.430000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_slp_mint_vault_173
2025-02-09T23:04:57.430000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_slp_mint_vault_173/test_framework.log
2025-02-09T23:04:57.430000Z TestFramework (ERROR): 
2025-02-09T23:04:57.430000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_slp_mint_vault_173' to consolidate all logs
2025-02-09T23:04:57.430000Z TestFramework (ERROR): 
2025-02-09T23:04:57.430000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:04:57.430000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:04:57.430000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_nft1.py ======

------- Stdout: -------
2025-02-09T23:05:13.815000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_slp_nft1_240
2025-02-09T23:05:16.853000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_nft1.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:05:16.904000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:05:17.256000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_slp_nft1_240
2025-02-09T23:05:17.256000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_slp_nft1_240/test_framework.log
2025-02-09T23:05:17.256000Z TestFramework (ERROR): 
2025-02-09T23:05:17.256000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_token_slp_nft1_240' to consolidate all logs
2025-02-09T23:05:17.256000Z TestFramework (ERROR): 
2025-02-09T23:05:17.256000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:05:17.257000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:05:17.257000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_tx.py ======

------- Stdout: -------
2025-02-09T23:04:55.308000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_tx_174
2025-02-09T23:04:57.245000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_tx.py", line 64, in run_test
    assert_equal(chronik.tx(GENESIS_CB_TXID).ok(), genesis_cb_tx())
                                                   ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:04:57.296000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:04:57.598000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_tx_174
2025-02-09T23:04:57.598000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_tx_174/test_framework.log
2025-02-09T23:04:57.598000Z TestFramework (ERROR): 
2025-02-09T23:04:57.598000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_tx_174' to consolidate all logs
2025-02-09T23:04:57.598000Z TestFramework (ERROR): 
2025-02-09T23:04:57.598000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:04:57.598000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:04:57.598000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_ws.py ======

------- Stdout: -------
2025-02-09T23:02:33.764000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_ws_13
2025-02-09T23:02:45.839000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_ws.py", line 120, in run_test
    coinbase_data = coinbase_data_from_block(tip)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/chronik_ws.py", line 116, in coinbase_data_from_block
    return pb.CoinbaseData(
           ^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 535, in init
    copy.add(**val)
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/containers.py", line 276, in add
    new_element = self._message_descriptor._concrete_class(**kwargs)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:02:45.891000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:02:46.092000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_ws_13
2025-02-09T23:02:46.092000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_ws_13/test_framework.log
2025-02-09T23:02:46.092000Z TestFramework (ERROR): 
2025-02-09T23:02:46.092000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_230207/chronik_ws_13' to consolidate all logs
2025-02-09T23:02:46.092000Z TestFramework (ERROR): 
2025-02-09T23:02:46.092000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:02:46.093000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:02:46.093000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: chronik_block_txs.py
Bitcoin ABC functional tests: chronik_disable_token_index.py
Bitcoin ABC functional tests: chronik_pause.py
Bitcoin ABC functional tests: chronik_script_confirmed_txs.py
Bitcoin ABC functional tests: chronik_script_history.py
Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py
Bitcoin ABC functional tests: chronik_script_utxos.py
Bitcoin ABC functional tests: chronik_scripthash.py
Bitcoin ABC functional tests: chronik_token_alp.py
Bitcoin ABC functional tests: chronik_token_broadcast_txs.py
Bitcoin ABC functional tests: chronik_token_burn.py
Bitcoin ABC functional tests: chronik_token_id_group.py
Bitcoin ABC functional tests: chronik_token_script_group.py
Bitcoin ABC functional tests: chronik_token_slp_fungible.py
Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py
Bitcoin ABC functional tests: chronik_token_slp_nft1.py
Bitcoin ABC functional tests: chronik_tx.py
Bitcoin ABC functional tests: chronik_ws.py

Tail of the build log:

/work/modules/chronik-client /work/abc-ci-builds/cashtab-tests

> chronik-client@3.0.0 prepublish
> npm run build


> chronik-client@3.0.0 build
> tsc


added 265 packages, and audited 267 packages in 5s

48 packages are looking for funding
  run `npm fund` for details

5 vulnerabilities (3 moderate, 2 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> chronik-client@3.0.0 build
> tsc

/work/modules/mock-chronik-client /work/abc-ci-builds/cashtab-tests
npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm warn deprecated glob@8.1.0: Glob versions prior to v9 are no longer supported
npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.

added 349 packages, and audited 352 packages in 2s

60 packages are looking for funding
  run `npm fund` for details

1 high severity vulnerability

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

> mock-chronik-client@2.1.3 build
> tsc

mocks/index.ts(31,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'ScriptUtxo'.
mocks/index.ts(39,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'Utxo'.
mocks/index.ts(91,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(105,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxInput'.
mocks/index.ts(113,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(129,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(146,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(156,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(182,17): error TS2353: Object literal may only specify known properties, and 'actualBurnAmount' does not exist in type 'TokenEntry'.
Build cashtab-tests failed with exit code 2

Failed tests logs:

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

------- Stdout: -------
2025-02-09T23:07:03.294000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_block_txs_162
2025-02-09T23:07:06.446000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_block_txs.py", line 92, in run_test
    txs=[genesis_cb_tx()],
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:07:06.498000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:07:06.950000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_block_txs_162
2025-02-09T23:07:06.950000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_block_txs_162/test_framework.log
2025-02-09T23:07:06.950000Z TestFramework (ERROR): 
2025-02-09T23:07:06.950000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_block_txs_162' to consolidate all logs
2025-02-09T23:07:06.951000Z TestFramework (ERROR): 
2025-02-09T23:07:06.951000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:07:06.951000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:07:06.951000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_disable_token_index.py ======

------- Stdout: -------
2025-02-09T23:06:38.005000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_disable_token_index_119
2025-02-09T23:06:41.364000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_disable_token_index.py", line 72, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:06:41.415000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:06:41.818000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_disable_token_index_119
2025-02-09T23:06:41.819000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_disable_token_index_119/test_framework.log
2025-02-09T23:06:41.819000Z TestFramework (ERROR): 
2025-02-09T23:06:41.819000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_disable_token_index_119' to consolidate all logs
2025-02-09T23:06:41.819000Z TestFramework (ERROR): 
2025-02-09T23:06:41.820000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:06:41.820000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:06:41.820000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_pause.py ======

------- Stdout: -------
2025-02-09T23:07:06.476000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_pause_167
2025-02-09T23:07:09.424000Z TestFramework (INFO): Restart to allow pause
2025-02-09T23:07:10.937000Z TestFramework (INFO): Generate coin + mature for testing
2025-02-09T23:07:11.012000Z TestFramework (INFO): Pause Chronik indexing
2025-02-09T23:07:11.013000Z TestFramework (INFO): Send using P2P network
2025-02-09T23:07:11.065000Z TestFramework (INFO): Tx not yet picked up by chronik
2025-02-09T23:07:11.167000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-09T23:07:11.171000Z TestFramework (INFO): Chronik has now indexed the tx
2025-02-09T23:07:11.173000Z TestFramework (INFO): Pause Chronik indexing for block processing
2025-02-09T23:07:11.174000Z TestFramework (INFO): Create block with conflicting tx
2025-02-09T23:07:11.279000Z TestFramework (INFO): Block not indexed yet
2025-02-09T23:07:11.379000Z TestFramework (INFO): Chronik still believes the old tx exists
2025-02-09T23:07:11.380000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-09T23:07:11.381000Z TestFramework (INFO): Block now indexed and tx conflict resolved
2025-02-09T23:07:11.382000Z TestFramework (INFO): Pause Chronik for reorg
2025-02-09T23:07:11.382000Z TestFramework (INFO): Reorg last block by mining two blocks
2025-02-09T23:07:11.483000Z TestFramework (INFO): Reorg returns tx to mempool
2025-02-09T23:07:11.484000Z TestFramework (INFO): Chronik still thinks blockA exists
2025-02-09T23:07:11.585000Z TestFramework (INFO): Add block that mines the tx
2025-02-09T23:07:11.686000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-09T23:07:11.689000Z 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/chronik_pause.py", line 160, in run_test
    assert_equal(tx_proto.inputs[0].value, coinvalue)
                 ^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'TxInput' object has no attribute 'value'
2025-02-09T23:07:11.740000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:07:12.091000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_pause_167
2025-02-09T23:07:12.091000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_pause_167/test_framework.log
2025-02-09T23:07:12.092000Z TestFramework (ERROR): 
2025-02-09T23:07:12.092000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_pause_167' to consolidate all logs
2025-02-09T23:07:12.092000Z TestFramework (ERROR): 
2025-02-09T23:07:12.092000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:07:12.092000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:07:12.093000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_confirmed_txs.py ======

------- Stdout: -------
2025-02-09T23:05:40.392000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_script_confirmed_txs_66
2025-02-09T23:05:42.286000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_confirmed_txs.py", line 124, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:05:42.337000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:05:42.639000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_script_confirmed_txs_66
2025-02-09T23:05:42.639000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_script_confirmed_txs_66/test_framework.log
2025-02-09T23:05:42.639000Z TestFramework (ERROR): 
2025-02-09T23:05:42.639000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_script_confirmed_txs_66' to consolidate all logs
2025-02-09T23:05:42.639000Z TestFramework (ERROR): 
2025-02-09T23:05:42.639000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:05:42.639000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:05:42.639000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_history.py ======

------- Stdout: -------
2025-02-09T23:05:51.061000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_script_history_75
2025-02-09T23:05:52.981000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_history.py", line 127, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:05:53.032000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:05:53.334000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_script_history_75
2025-02-09T23:05:53.334000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_script_history_75/test_framework.log
2025-02-09T23:05:53.334000Z TestFramework (ERROR): 
2025-02-09T23:05:53.334000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_script_history_75' to consolidate all logs
2025-02-09T23:05:53.334000Z TestFramework (ERROR): 
2025-02-09T23:05:53.334000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:05:53.334000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:05:53.334000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py ======

------- Stdout: -------
2025-02-09T23:07:07.096000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_script_unconfirmed_txs_170
2025-02-09T23:07:10.290000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_unconfirmed_txs.py", line 151, in run_test
    pb.TxInput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxInput has no "value" field.
2025-02-09T23:07:10.342000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:07:10.693000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_script_unconfirmed_txs_170
2025-02-09T23:07:10.694000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_script_unconfirmed_txs_170/test_framework.log
2025-02-09T23:07:10.694000Z TestFramework (ERROR): 
2025-02-09T23:07:10.694000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_script_unconfirmed_txs_170' to consolidate all logs
2025-02-09T23:07:10.694000Z TestFramework (ERROR): 
2025-02-09T23:07:10.694000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:07:10.694000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:07:10.694000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_utxos.py ======

------- Stdout: -------
2025-02-09T23:07:29.186000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_script_utxos_233
2025-02-09T23:07:32.574000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_utxos.py", line 91, in run_test
    pb.ScriptUtxo(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message ScriptUtxo has no "value" field.
2025-02-09T23:07:32.625000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:07:33.077000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_script_utxos_233
2025-02-09T23:07:33.077000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_script_utxos_233/test_framework.log
2025-02-09T23:07:33.077000Z TestFramework (ERROR): 
2025-02-09T23:07:33.078000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_script_utxos_233' to consolidate all logs
2025-02-09T23:07:33.078000Z TestFramework (ERROR): 
2025-02-09T23:07:33.078000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:07:33.078000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:07:33.078000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_scripthash.py ======

------- Stdout: -------
2025-02-09T23:06:38.844000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_scripthash_121
2025-02-09T23:06:42.271000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_scripthash.py", line 51, in run_test
    self.test_valid_requests()
  File "/work/test/functional/chronik_scripthash.py", line 102, in test_valid_requests
    txs=[genesis_cb_tx()], num_pages=1, num_txs=1
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:06:42.322000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:06:42.724000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_scripthash_121
2025-02-09T23:06:42.725000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_scripthash_121/test_framework.log
2025-02-09T23:06:42.725000Z TestFramework (ERROR): 
2025-02-09T23:06:42.725000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_scripthash_121' to consolidate all logs
2025-02-09T23:06:42.725000Z TestFramework (ERROR): 
2025-02-09T23:06:42.726000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:06:42.726000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:06:42.726000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_alp.py ======

------- Stdout: -------
2025-02-09T23:06:41.072000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_alp_122
2025-02-09T23:06:44.264000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_alp.py", line 100, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:06:44.315000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:06:44.716000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_alp_122
2025-02-09T23:06:44.717000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_alp_122/test_framework.log
2025-02-09T23:06:44.717000Z TestFramework (ERROR): 
2025-02-09T23:06:44.717000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_alp_122' to consolidate all logs
2025-02-09T23:06:44.717000Z TestFramework (ERROR): 
2025-02-09T23:06:44.717000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:06:44.717000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:06:44.717000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_broadcast_txs.py ======

------- Stdout: -------
2025-02-09T23:07:30.643000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_broadcast_txs_235
2025-02-09T23:07:33.972000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_broadcast_txs.py", line 76, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:07:34.023000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:07:34.425000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_broadcast_txs_235
2025-02-09T23:07:34.425000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_broadcast_txs_235/test_framework.log
2025-02-09T23:07:34.426000Z TestFramework (ERROR): 
2025-02-09T23:07:34.426000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_broadcast_txs_235' to consolidate all logs
2025-02-09T23:07:34.426000Z TestFramework (ERROR): 
2025-02-09T23:07:34.426000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:07:34.427000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:07:34.427000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_burn.py ======

------- Stdout: -------
2025-02-09T23:07:31.119000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_burn_236
2025-02-09T23:07:34.145000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_burn.py", line 92, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:07:34.197000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:07:34.601000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_burn_236
2025-02-09T23:07:34.601000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_burn_236/test_framework.log
2025-02-09T23:07:34.601000Z TestFramework (ERROR): 
2025-02-09T23:07:34.601000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_burn_236' to consolidate all logs
2025-02-09T23:07:34.601000Z TestFramework (ERROR): 
2025-02-09T23:07:34.601000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:07:34.601000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:07:34.601000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_id_group.py ======

------- Stdout: -------
2025-02-09T23:07:08.270000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_id_group_172
2025-02-09T23:07:11.447000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_id_group.py", line 95, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:07:11.499000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:07:11.850000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_id_group_172
2025-02-09T23:07:11.850000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_id_group_172/test_framework.log
2025-02-09T23:07:11.850000Z TestFramework (ERROR): 
2025-02-09T23:07:11.850000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_id_group_172' to consolidate all logs
2025-02-09T23:07:11.850000Z TestFramework (ERROR): 
2025-02-09T23:07:11.850000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:07:11.850000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:07:11.850000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_script_group.py ======

------- Stdout: -------
2025-02-09T23:07:31.600000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_script_group_238
2025-02-09T23:07:34.651000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_script_group.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:07:34.702000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:07:35.103000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_script_group_238
2025-02-09T23:07:35.103000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_script_group_238/test_framework.log
2025-02-09T23:07:35.103000Z TestFramework (ERROR): 
2025-02-09T23:07:35.104000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_script_group_238' to consolidate all logs
2025-02-09T23:07:35.104000Z TestFramework (ERROR): 
2025-02-09T23:07:35.104000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:07:35.104000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:07:35.104000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_fungible.py ======

------- Stdout: -------
2025-02-09T23:07:31.735000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_slp_fungible_239
2025-02-09T23:07:34.815000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_fungible.py", line 80, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:07:34.866000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:07:35.218000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_slp_fungible_239
2025-02-09T23:07:35.218000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_slp_fungible_239/test_framework.log
2025-02-09T23:07:35.218000Z TestFramework (ERROR): 
2025-02-09T23:07:35.218000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_slp_fungible_239' to consolidate all logs
2025-02-09T23:07:35.218000Z TestFramework (ERROR): 
2025-02-09T23:07:35.218000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:07:35.218000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:07:35.218000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py ======

------- Stdout: -------
2025-02-09T23:07:08.519000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_slp_mint_vault_173
2025-02-09T23:07:11.711000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_mint_vault.py", line 119, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:07:11.762000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:07:12.163000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_slp_mint_vault_173
2025-02-09T23:07:12.164000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_slp_mint_vault_173/test_framework.log
2025-02-09T23:07:12.164000Z TestFramework (ERROR): 
2025-02-09T23:07:12.164000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_slp_mint_vault_173' to consolidate all logs
2025-02-09T23:07:12.164000Z TestFramework (ERROR): 
2025-02-09T23:07:12.164000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:07:12.164000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:07:12.164000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_nft1.py ======

------- Stdout: -------
2025-02-09T23:07:32.541000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_slp_nft1_240
2025-02-09T23:07:35.577000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_nft1.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:07:35.629000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:07:36.080000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_slp_nft1_240
2025-02-09T23:07:36.080000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_slp_nft1_240/test_framework.log
2025-02-09T23:07:36.080000Z TestFramework (ERROR): 
2025-02-09T23:07:36.080000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_token_slp_nft1_240' to consolidate all logs
2025-02-09T23:07:36.080000Z TestFramework (ERROR): 
2025-02-09T23:07:36.081000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:07:36.081000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:07:36.081000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_tx.py ======

------- Stdout: -------
2025-02-09T23:07:08.660000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_tx_174
2025-02-09T23:07:11.761000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_tx.py", line 64, in run_test
    assert_equal(chronik.tx(GENESIS_CB_TXID).ok(), genesis_cb_tx())
                                                   ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:07:11.812000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:07:12.214000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_tx_174
2025-02-09T23:07:12.214000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_tx_174/test_framework.log
2025-02-09T23:07:12.214000Z TestFramework (ERROR): 
2025-02-09T23:07:12.214000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_tx_174' to consolidate all logs
2025-02-09T23:07:12.214000Z TestFramework (ERROR): 
2025-02-09T23:07:12.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-02-09T23:07:12.214000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:07:12.214000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_ws.py ======

------- Stdout: -------
2025-02-09T23:04:27.342000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_ws_13
2025-02-09T23:04:38.658000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_ws.py", line 120, in run_test
    coinbase_data = coinbase_data_from_block(tip)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/chronik_ws.py", line 116, in coinbase_data_from_block
    return pb.CoinbaseData(
           ^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 535, in init
    copy.add(**val)
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/containers.py", line 276, in add
    new_element = self._message_descriptor._concrete_class(**kwargs)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:04:38.710000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:04:38.861000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_ws_13
2025-02-09T23:04:38.861000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_ws_13/test_framework.log
2025-02-09T23:04:38.861000Z TestFramework (ERROR): 
2025-02-09T23:04:38.861000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_230400/chronik_ws_13' to consolidate all logs
2025-02-09T23:04:38.861000Z TestFramework (ERROR): 
2025-02-09T23:04:38.861000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:04:38.861000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:04:38.861000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: chronik_block_txs.py
Bitcoin ABC functional tests: chronik_disable_token_index.py
Bitcoin ABC functional tests: chronik_pause.py
Bitcoin ABC functional tests: chronik_script_confirmed_txs.py
Bitcoin ABC functional tests: chronik_script_history.py
Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py
Bitcoin ABC functional tests: chronik_script_utxos.py
Bitcoin ABC functional tests: chronik_scripthash.py
Bitcoin ABC functional tests: chronik_token_alp.py
Bitcoin ABC functional tests: chronik_token_broadcast_txs.py
Bitcoin ABC functional tests: chronik_token_burn.py
Bitcoin ABC functional tests: chronik_token_id_group.py
Bitcoin ABC functional tests: chronik_token_script_group.py
Bitcoin ABC functional tests: chronik_token_slp_fungible.py
Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py
Bitcoin ABC functional tests: chronik_token_slp_nft1.py
Bitcoin ABC functional tests: chronik_tx.py
Bitcoin ABC functional tests: chronik_ws.py

Failed tests logs:

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

------- Stdout: -------
2025-02-09T23:02:12.163000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250209_230210/abc_p2p_getavaaddr_5
2025-02-09T23:03:18.361000Z TestFramework.utils (ERROR): wait_until() failed. Predicate: ''''
        def test_function():
            if check_connected:
                assert self.is_connected
            return test_function_in()
'''
2025-02-09T23:03:18.361000Z TestFramework (ERROR): Assertion failed
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_getavaaddr.py", line 554, in run_test
    self.getavaaddr_interval_test()
  File "/work/test/functional/abc_p2p_getavaaddr.py", line 192, in getavaaddr_interval_test
    requester.wait_until(requester.addr_received)
  File "/work/test/functional/test_framework/p2p.py", line 582, in wait_until
    wait_until_helper(
  File "/work/test/functional/test_framework/util.py", line 296, in wait_until_helper
    raise AssertionError(
AssertionError: Predicate ''''
        def test_function():
            if check_connected:
                assert self.is_connected
            return test_function_in()
''' not true after 60.0 seconds
2025-02-09T23:03:18.413000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:03:18.816000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250209_230210/abc_p2p_getavaaddr_5
2025-02-09T23:03:18.816000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250209_230210/abc_p2p_getavaaddr_5/test_framework.log
2025-02-09T23:03:18.816000Z TestFramework (ERROR): 
2025-02-09T23:03:18.816000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-diff/test/tmp/test_runner_₿₵_🏃_20250209_230210/abc_p2p_getavaaddr_5' to consolidate all logs
2025-02-09T23:03:18.816000Z TestFramework (ERROR): 
2025-02-09T23:03:18.816000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:03:18.816000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:03:18.816000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: abc_p2p_getavaaddr.py

Tail of the build log:

/work/modules/chronik-client /work/abc-ci-builds/ecash-herald-tests

> chronik-client@3.0.0 prepublish
> npm run build


> chronik-client@3.0.0 build
> tsc


added 265 packages, and audited 267 packages in 5s

48 packages are looking for funding
  run `npm fund` for details

5 vulnerabilities (3 moderate, 2 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> chronik-client@3.0.0 build
> tsc

/work/modules/mock-chronik-client /work/abc-ci-builds/ecash-herald-tests
npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm warn deprecated glob@8.1.0: Glob versions prior to v9 are no longer supported
npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.

added 349 packages, and audited 352 packages in 2s

60 packages are looking for funding
  run `npm fund` for details

1 high severity vulnerability

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

> mock-chronik-client@2.1.3 build
> tsc

mocks/index.ts(31,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'ScriptUtxo'.
mocks/index.ts(39,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'Utxo'.
mocks/index.ts(91,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(105,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxInput'.
mocks/index.ts(113,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(129,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(146,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(156,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(182,17): error TS2353: Object literal may only specify known properties, and 'actualBurnAmount' does not exist in type 'TokenEntry'.
Build ecash-herald-tests failed with exit code 2

Tail of the build log:

/work/modules/chronik-client /work/abc-ci-builds/cashtab-tests

> chronik-client@3.0.0 prepublish
> npm run build


> chronik-client@3.0.0 build
> tsc


added 265 packages, and audited 267 packages in 5s

48 packages are looking for funding
  run `npm fund` for details

5 vulnerabilities (3 moderate, 2 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> chronik-client@3.0.0 build
> tsc

/work/modules/mock-chronik-client /work/abc-ci-builds/cashtab-tests
npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm warn deprecated glob@8.1.0: Glob versions prior to v9 are no longer supported
npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.

added 349 packages, and audited 352 packages in 2s

60 packages are looking for funding
  run `npm fund` for details

1 high severity vulnerability

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

> mock-chronik-client@2.1.3 build
> tsc

mocks/index.ts(31,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'ScriptUtxo'.
mocks/index.ts(39,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'Utxo'.
mocks/index.ts(91,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(105,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxInput'.
mocks/index.ts(113,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(129,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(146,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(156,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(182,17): error TS2353: Object literal may only specify known properties, and 'actualBurnAmount' does not exist in type 'TokenEntry'.
Build cashtab-tests failed with exit code 2

Tail of the build log:

/work/modules/chronik-client /work/abc-ci-builds/token-server-tests

> chronik-client@3.0.0 prepublish
> npm run build


> chronik-client@3.0.0 build
> tsc


added 265 packages, and audited 267 packages in 5s

48 packages are looking for funding
  run `npm fund` for details

5 vulnerabilities (3 moderate, 2 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> chronik-client@3.0.0 build
> tsc

/work/modules/mock-chronik-client /work/abc-ci-builds/token-server-tests
npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm warn deprecated glob@8.1.0: Glob versions prior to v9 are no longer supported
npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.

added 349 packages, and audited 352 packages in 2s

60 packages are looking for funding
  run `npm fund` for details

1 high severity vulnerability

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

> mock-chronik-client@2.1.3 build
> tsc

mocks/index.ts(31,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'ScriptUtxo'.
mocks/index.ts(39,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'Utxo'.
mocks/index.ts(91,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(105,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxInput'.
mocks/index.ts(113,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(129,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(146,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(156,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(182,17): error TS2353: Object literal may only specify known properties, and 'actualBurnAmount' does not exist in type 'TokenEntry'.
Build token-server-tests failed with exit code 2

Tail of the build log:

/work/modules/chronik-client /work/abc-ci-builds/ecash-herald-tests

> chronik-client@3.0.0 prepublish
> npm run build


> chronik-client@3.0.0 build
> tsc


added 265 packages, and audited 267 packages in 5s

48 packages are looking for funding
  run `npm fund` for details

5 vulnerabilities (3 moderate, 2 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> chronik-client@3.0.0 build
> tsc

/work/modules/mock-chronik-client /work/abc-ci-builds/ecash-herald-tests
npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm warn deprecated glob@8.1.0: Glob versions prior to v9 are no longer supported
npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.

added 349 packages, and audited 352 packages in 2s

60 packages are looking for funding
  run `npm fund` for details

1 high severity vulnerability

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

> mock-chronik-client@2.1.3 build
> tsc

mocks/index.ts(31,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'ScriptUtxo'.
mocks/index.ts(39,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'Utxo'.
mocks/index.ts(91,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(105,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxInput'.
mocks/index.ts(113,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(129,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(146,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(156,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(182,17): error TS2353: Object literal may only specify known properties, and 'actualBurnAmount' does not exist in type 'TokenEntry'.
Build ecash-herald-tests failed with exit code 2

Tail of the build log:

wallet_txn_clone.py --mineblock            | ✓ Passed  | 6 s
wallet_txn_doublespend.py                  | ✓ Passed  | 5 s
wallet_txn_doublespend.py --mineblock      | ✓ Passed  | 7 s
wallet_watchonly.py                        | ✓ Passed  | 3 s
wallet_watchonly.py --usecli               | ✓ Passed  | 3 s
chronik_avalanche.py                       | ○ Skipped | 0 s
chronik_block.py                           | ○ Skipped | 0 s
chronik_block_header.py                    | ○ Skipped | 0 s
chronik_block_info.py                      | ○ Skipped | 0 s
chronik_block_txs.py                       | ○ Skipped | 0 s
chronik_blockchain_info.py                 | ○ Skipped | 0 s
chronik_blocks.py                          | ○ Skipped | 0 s
chronik_chronik_info.py                    | ○ Skipped | 0 s
chronik_cors.py                            | ○ Skipped | 0 s
chronik_disable_token_index.py             | ○ Skipped | 0 s
chronik_disallow_prune.py                  | ○ Skipped | 0 s
chronik_electrum_basic.py                  | ○ Skipped | 0 s
chronik_electrum_blockchain.py             | ○ Skipped | 0 s
chronik_lokad_id_group.py                  | ○ Skipped | 0 s
chronik_mempool_conflicts.py               | ○ Skipped | 0 s
chronik_mempool_disconnectpool.py          | ○ Skipped | 0 s
chronik_pause.py                           | ○ Skipped | 0 s
chronik_plugin_groups.py                   | ○ Skipped | 0 s
chronik_plugins.py                         | ○ Skipped | 0 s
chronik_plugins_setup.py                   | ○ Skipped | 0 s
chronik_raw_tx.py                          | ○ Skipped | 0 s
chronik_resync.py                          | ○ Skipped | 0 s
chronik_script_confirmed_txs.py            | ○ Skipped | 0 s
chronik_script_history.py                  | ○ Skipped | 0 s
chronik_script_unconfirmed_txs.py          | ○ Skipped | 0 s
chronik_script_utxos.py                    | ○ Skipped | 0 s
chronik_scripthash.py                      | ○ Skipped | 0 s
chronik_serve.py                           | ○ Skipped | 0 s
chronik_spent_by.py                        | ○ Skipped | 0 s
chronik_token_alp.py                       | ○ Skipped | 0 s
chronik_token_broadcast_txs.py             | ○ Skipped | 0 s
chronik_token_burn.py                      | ○ Skipped | 0 s
chronik_token_id_group.py                  | ○ Skipped | 0 s
chronik_token_parse_failure.py             | ○ Skipped | 0 s
chronik_token_script_group.py              | ○ Skipped | 0 s
chronik_token_slp_fungible.py              | ○ Skipped | 0 s
chronik_token_slp_mint_vault.py            | ○ Skipped | 0 s
chronik_token_slp_nft1.py                  | ○ Skipped | 0 s
chronik_tx.py                              | ○ Skipped | 0 s
chronik_tx_removal_order.py                | ○ Skipped | 0 s
chronik_ws.py                              | ○ Skipped | 0 s
chronik_ws_ordering.py                     | ○ Skipped | 0 s
chronik_ws_ping.py                         | ○ Skipped | 0 s
chronik_ws_script.py                       | ○ Skipped | 0 s
feature_bind_port_discover.py              | ○ Skipped | 0 s
feature_bind_port_externalip.py            | ○ Skipped | 0 s
interface_usdt_net.py                      | ○ Skipped | 0 s
interface_usdt_utxocache.py                | ○ Skipped | 0 s
interface_usdt_validation.py               | ○ Skipped | 0 s

ALL                                        | ✓ Passed  | 2609 s (accumulated) 
Runtime: 227 s

ninja: build stopped: cannot make progress due to previous errors.
Build build-diff failed with exit code 1

Failed tests logs:

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

------- Stdout: -------
2025-02-09T23:37:13.445000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_block_txs_162
2025-02-09T23:37:15.639000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_block_txs.py", line 92, in run_test
    txs=[genesis_cb_tx()],
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:37:15.691000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:37:15.992000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_block_txs_162
2025-02-09T23:37:15.992000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_block_txs_162/test_framework.log
2025-02-09T23:37:15.992000Z TestFramework (ERROR): 
2025-02-09T23:37:15.992000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_block_txs_162' to consolidate all logs
2025-02-09T23:37:15.992000Z TestFramework (ERROR): 
2025-02-09T23:37:15.992000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:37:15.992000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:37:15.993000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_disable_token_index.py ======

------- Stdout: -------
2025-02-09T23:36:55.928000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_disable_token_index_119
2025-02-09T23:36:58.087000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_disable_token_index.py", line 72, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:36:58.139000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:36:58.390000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_disable_token_index_119
2025-02-09T23:36:58.391000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_disable_token_index_119/test_framework.log
2025-02-09T23:36:58.391000Z TestFramework (ERROR): 
2025-02-09T23:36:58.392000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_disable_token_index_119' to consolidate all logs
2025-02-09T23:36:58.392000Z TestFramework (ERROR): 
2025-02-09T23:36:58.392000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:36:58.392000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:36:58.392000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_pause.py ======

------- Stdout: -------
2025-02-09T23:37:15.035000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_pause_167
2025-02-09T23:37:16.887000Z TestFramework (INFO): Restart to allow pause
2025-02-09T23:37:17.995000Z TestFramework (INFO): Generate coin + mature for testing
2025-02-09T23:37:18.076000Z TestFramework (INFO): Pause Chronik indexing
2025-02-09T23:37:18.077000Z TestFramework (INFO): Send using P2P network
2025-02-09T23:37:18.128000Z TestFramework (INFO): Tx not yet picked up by chronik
2025-02-09T23:37:18.228000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-09T23:37:18.230000Z TestFramework (INFO): Chronik has now indexed the tx
2025-02-09T23:37:18.230000Z TestFramework (INFO): Pause Chronik indexing for block processing
2025-02-09T23:37:18.230000Z TestFramework (INFO): Create block with conflicting tx
2025-02-09T23:37:18.332000Z TestFramework (INFO): Block not indexed yet
2025-02-09T23:37:18.433000Z TestFramework (INFO): Chronik still believes the old tx exists
2025-02-09T23:37:18.433000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-09T23:37:18.434000Z TestFramework (INFO): Block now indexed and tx conflict resolved
2025-02-09T23:37:18.436000Z TestFramework (INFO): Pause Chronik for reorg
2025-02-09T23:37:18.436000Z TestFramework (INFO): Reorg last block by mining two blocks
2025-02-09T23:37:18.538000Z TestFramework (INFO): Reorg returns tx to mempool
2025-02-09T23:37:18.539000Z TestFramework (INFO): Chronik still thinks blockA exists
2025-02-09T23:37:18.640000Z TestFramework (INFO): Add block that mines the tx
2025-02-09T23:37:18.741000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-09T23:37:18.744000Z 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/chronik_pause.py", line 160, in run_test
    assert_equal(tx_proto.inputs[0].value, coinvalue)
                 ^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'TxInput' object has no attribute 'value'
2025-02-09T23:37:18.796000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:37:19.047000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_pause_167
2025-02-09T23:37:19.047000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_pause_167/test_framework.log
2025-02-09T23:37:19.047000Z TestFramework (ERROR): 
2025-02-09T23:37:19.047000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_pause_167' to consolidate all logs
2025-02-09T23:37:19.047000Z TestFramework (ERROR): 
2025-02-09T23:37:19.047000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:37:19.048000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:37:19.048000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_confirmed_txs.py ======

------- Stdout: -------
2025-02-09T23:36:08.896000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_script_confirmed_txs_66
2025-02-09T23:36:10.791000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_confirmed_txs.py", line 124, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:36:10.842000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:36:11.144000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_script_confirmed_txs_66
2025-02-09T23:36:11.144000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_script_confirmed_txs_66/test_framework.log
2025-02-09T23:36:11.144000Z TestFramework (ERROR): 
2025-02-09T23:36:11.144000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_script_confirmed_txs_66' to consolidate all logs
2025-02-09T23:36:11.144000Z TestFramework (ERROR): 
2025-02-09T23:36:11.144000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:36:11.144000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:36:11.144000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_history.py ======

------- Stdout: -------
2025-02-09T23:36:19.692000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_script_history_75
2025-02-09T23:36:21.918000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_history.py", line 127, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:36:21.972000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:36:22.276000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_script_history_75
2025-02-09T23:36:22.276000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_script_history_75/test_framework.log
2025-02-09T23:36:22.276000Z TestFramework (ERROR): 
2025-02-09T23:36:22.276000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_script_history_75' to consolidate all logs
2025-02-09T23:36:22.276000Z TestFramework (ERROR): 
2025-02-09T23:36:22.276000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:36:22.276000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:36:22.276000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py ======

------- Stdout: -------
2025-02-09T23:37:16.100000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_script_unconfirmed_txs_170
2025-02-09T23:37:18.381000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_unconfirmed_txs.py", line 151, in run_test
    pb.TxInput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxInput has no "value" field.
2025-02-09T23:37:18.432000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:37:18.684000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_script_unconfirmed_txs_170
2025-02-09T23:37:18.684000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_script_unconfirmed_txs_170/test_framework.log
2025-02-09T23:37:18.684000Z TestFramework (ERROR): 
2025-02-09T23:37:18.684000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_script_unconfirmed_txs_170' to consolidate all logs
2025-02-09T23:37:18.684000Z TestFramework (ERROR): 
2025-02-09T23:37:18.684000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:37:18.684000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:37:18.684000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_utxos.py ======

------- Stdout: -------
2025-02-09T23:37:32.563000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_script_utxos_233
2025-02-09T23:37:34.832000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_utxos.py", line 91, in run_test
    pb.ScriptUtxo(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message ScriptUtxo has no "value" field.
2025-02-09T23:37:34.883000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:37:35.185000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_script_utxos_233
2025-02-09T23:37:35.185000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_script_utxos_233/test_framework.log
2025-02-09T23:37:35.185000Z TestFramework (ERROR): 
2025-02-09T23:37:35.185000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_script_utxos_233' to consolidate all logs
2025-02-09T23:37:35.185000Z TestFramework (ERROR): 
2025-02-09T23:37:35.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-02-09T23:37:35.185000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:37:35.185000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_scripthash.py ======

------- Stdout: -------
2025-02-09T23:36:57.897000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_scripthash_121
2025-02-09T23:37:00.138000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_scripthash.py", line 51, in run_test
    self.test_valid_requests()
  File "/work/test/functional/chronik_scripthash.py", line 102, in test_valid_requests
    txs=[genesis_cb_tx()], num_pages=1, num_txs=1
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:37:00.189000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:37:00.440000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_scripthash_121
2025-02-09T23:37:00.440000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_scripthash_121/test_framework.log
2025-02-09T23:37:00.440000Z TestFramework (ERROR): 
2025-02-09T23:37:00.440000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_scripthash_121' to consolidate all logs
2025-02-09T23:37:00.440000Z TestFramework (ERROR): 
2025-02-09T23:37:00.440000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:37:00.441000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:37:00.441000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_alp.py ======

------- Stdout: -------
2025-02-09T23:36:58.039000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_alp_122
2025-02-09T23:37:00.282000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_alp.py", line 100, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:37:00.333000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:37:00.584000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_alp_122
2025-02-09T23:37:00.584000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_alp_122/test_framework.log
2025-02-09T23:37:00.584000Z TestFramework (ERROR): 
2025-02-09T23:37:00.584000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_alp_122' to consolidate all logs
2025-02-09T23:37:00.585000Z TestFramework (ERROR): 
2025-02-09T23:37:00.585000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:37:00.585000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:37:00.585000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_broadcast_txs.py ======

------- Stdout: -------
2025-02-09T23:37:32.796000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_broadcast_txs_235
2025-02-09T23:37:34.970000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_broadcast_txs.py", line 76, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:37:35.022000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:37:35.323000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_broadcast_txs_235
2025-02-09T23:37:35.323000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_broadcast_txs_235/test_framework.log
2025-02-09T23:37:35.323000Z TestFramework (ERROR): 
2025-02-09T23:37:35.323000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_broadcast_txs_235' to consolidate all logs
2025-02-09T23:37:35.323000Z TestFramework (ERROR): 
2025-02-09T23:37:35.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-02-09T23:37:35.323000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:37:35.323000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_burn.py ======

------- Stdout: -------
2025-02-09T23:37:33.030000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_burn_236
2025-02-09T23:37:35.210000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_burn.py", line 92, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:37:35.262000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:37:35.513000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_burn_236
2025-02-09T23:37:35.513000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_burn_236/test_framework.log
2025-02-09T23:37:35.513000Z TestFramework (ERROR): 
2025-02-09T23:37:35.513000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_burn_236' to consolidate all logs
2025-02-09T23:37:35.513000Z TestFramework (ERROR): 
2025-02-09T23:37:35.513000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:37:35.513000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:37:35.513000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_id_group.py ======

------- Stdout: -------
2025-02-09T23:37:16.470000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_id_group_172
2025-02-09T23:37:18.723000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_id_group.py", line 95, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:37:18.774000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:37:19.075000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_id_group_172
2025-02-09T23:37:19.075000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_id_group_172/test_framework.log
2025-02-09T23:37:19.075000Z TestFramework (ERROR): 
2025-02-09T23:37:19.076000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_id_group_172' to consolidate all logs
2025-02-09T23:37:19.076000Z TestFramework (ERROR): 
2025-02-09T23:37:19.076000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:37:19.076000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:37:19.076000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_script_group.py ======

------- Stdout: -------
2025-02-09T23:37:34.019000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_script_group_238
2025-02-09T23:37:36.191000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_script_group.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:37:36.243000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:37:36.494000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_script_group_238
2025-02-09T23:37:36.494000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_script_group_238/test_framework.log
2025-02-09T23:37:36.494000Z TestFramework (ERROR): 
2025-02-09T23:37:36.494000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_script_group_238' to consolidate all logs
2025-02-09T23:37:36.494000Z TestFramework (ERROR): 
2025-02-09T23:37:36.494000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:37:36.494000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:37:36.495000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_fungible.py ======

------- Stdout: -------
2025-02-09T23:37:34.055000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_slp_fungible_239
2025-02-09T23:37:36.205000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_fungible.py", line 80, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:37:36.256000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:37:36.507000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_slp_fungible_239
2025-02-09T23:37:36.508000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_slp_fungible_239/test_framework.log
2025-02-09T23:37:36.508000Z TestFramework (ERROR): 
2025-02-09T23:37:36.508000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_slp_fungible_239' to consolidate all logs
2025-02-09T23:37:36.508000Z TestFramework (ERROR): 
2025-02-09T23:37:36.508000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:37:36.508000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:37:36.508000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py ======

------- Stdout: -------
2025-02-09T23:37:17.032000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_slp_mint_vault_173
2025-02-09T23:37:19.320000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_mint_vault.py", line 119, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:37:19.371000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:37:19.673000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_slp_mint_vault_173
2025-02-09T23:37:19.673000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_slp_mint_vault_173/test_framework.log
2025-02-09T23:37:19.673000Z TestFramework (ERROR): 
2025-02-09T23:37:19.673000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_slp_mint_vault_173' to consolidate all logs
2025-02-09T23:37:19.673000Z TestFramework (ERROR): 
2025-02-09T23:37:19.673000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:37:19.673000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:37:19.673000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_nft1.py ======

------- Stdout: -------
2025-02-09T23:37:34.068000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_slp_nft1_240
2025-02-09T23:37:36.215000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_nft1.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:37:36.267000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:37:36.518000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_slp_nft1_240
2025-02-09T23:37:36.519000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_slp_nft1_240/test_framework.log
2025-02-09T23:37:36.519000Z TestFramework (ERROR): 
2025-02-09T23:37:36.519000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_token_slp_nft1_240' to consolidate all logs
2025-02-09T23:37:36.519000Z TestFramework (ERROR): 
2025-02-09T23:37:36.519000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:37:36.519000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:37:36.519000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_tx.py ======

------- Stdout: -------
2025-02-09T23:37:17.198000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_tx_174
2025-02-09T23:37:19.409000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_tx.py", line 64, in run_test
    assert_equal(chronik.tx(GENESIS_CB_TXID).ok(), genesis_cb_tx())
                                                   ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:37:19.461000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:37:19.812000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_tx_174
2025-02-09T23:37:19.812000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_tx_174/test_framework.log
2025-02-09T23:37:19.812000Z TestFramework (ERROR): 
2025-02-09T23:37:19.812000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_tx_174' to consolidate all logs
2025-02-09T23:37:19.812000Z TestFramework (ERROR): 
2025-02-09T23:37:19.812000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:37:19.813000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:37:19.813000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_ws.py ======

------- Stdout: -------
2025-02-09T23:34:55.216000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_ws_13
2025-02-09T23:35:05.754000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_ws.py", line 120, in run_test
    coinbase_data = coinbase_data_from_block(tip)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/chronik_ws.py", line 116, in coinbase_data_from_block
    return pb.CoinbaseData(
           ^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 535, in init
    copy.add(**val)
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/containers.py", line 276, in add
    new_element = self._message_descriptor._concrete_class(**kwargs)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:35:05.805000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:35:05.957000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_ws_13
2025-02-09T23:35:05.957000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_ws_13/test_framework.log
2025-02-09T23:35:05.957000Z TestFramework (ERROR): 
2025-02-09T23:35:05.957000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250209_233425/chronik_ws_13' to consolidate all logs
2025-02-09T23:35:05.957000Z TestFramework (ERROR): 
2025-02-09T23:35:05.957000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:35:05.957000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:35:05.957000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: chronik_block_txs.py
Bitcoin ABC functional tests: chronik_disable_token_index.py
Bitcoin ABC functional tests: chronik_pause.py
Bitcoin ABC functional tests: chronik_script_confirmed_txs.py
Bitcoin ABC functional tests: chronik_script_history.py
Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py
Bitcoin ABC functional tests: chronik_script_utxos.py
Bitcoin ABC functional tests: chronik_scripthash.py
Bitcoin ABC functional tests: chronik_token_alp.py
Bitcoin ABC functional tests: chronik_token_broadcast_txs.py
Bitcoin ABC functional tests: chronik_token_burn.py
Bitcoin ABC functional tests: chronik_token_id_group.py
Bitcoin ABC functional tests: chronik_token_script_group.py
Bitcoin ABC functional tests: chronik_token_slp_fungible.py
Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py
Bitcoin ABC functional tests: chronik_token_slp_nft1.py
Bitcoin ABC functional tests: chronik_tx.py
Bitcoin ABC functional tests: chronik_ws.py

Failed tests logs:

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

------- Stdout: -------
2025-02-09T23:39:47.559000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_block_txs_162
2025-02-09T23:39:48.273000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_block_txs.py", line 92, in run_test
    txs=[genesis_cb_tx()],
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:39:48.324000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:39:48.475000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_block_txs_162
2025-02-09T23:39:48.475000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_block_txs_162/test_framework.log
2025-02-09T23:39:48.475000Z TestFramework (ERROR): 
2025-02-09T23:39:48.476000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_block_txs_162' to consolidate all logs
2025-02-09T23:39:48.476000Z TestFramework (ERROR): 
2025-02-09T23:39:48.476000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:39:48.476000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:39:48.476000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_disable_token_index.py ======

------- Stdout: -------
2025-02-09T23:39:37.079000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_disable_token_index_119
2025-02-09T23:39:38.010000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_disable_token_index.py", line 72, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:39:38.062000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:39:38.163000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_disable_token_index_119
2025-02-09T23:39:38.163000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_disable_token_index_119/test_framework.log
2025-02-09T23:39:38.163000Z TestFramework (ERROR): 
2025-02-09T23:39:38.163000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_disable_token_index_119' to consolidate all logs
2025-02-09T23:39:38.163000Z TestFramework (ERROR): 
2025-02-09T23:39:38.163000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:39:38.163000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:39:38.163000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_pause.py ======

------- Stdout: -------
2025-02-09T23:39:48.499000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_pause_167
2025-02-09T23:39:49.117000Z TestFramework (INFO): Restart to allow pause
2025-02-09T23:39:49.622000Z TestFramework (INFO): Generate coin + mature for testing
2025-02-09T23:39:49.715000Z TestFramework (INFO): Pause Chronik indexing
2025-02-09T23:39:49.716000Z TestFramework (INFO): Send using P2P network
2025-02-09T23:39:49.767000Z TestFramework (INFO): Tx not yet picked up by chronik
2025-02-09T23:39:49.867000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-09T23:39:49.869000Z TestFramework (INFO): Chronik has now indexed the tx
2025-02-09T23:39:49.869000Z TestFramework (INFO): Pause Chronik indexing for block processing
2025-02-09T23:39:49.869000Z TestFramework (INFO): Create block with conflicting tx
2025-02-09T23:39:49.971000Z TestFramework (INFO): Block not indexed yet
2025-02-09T23:39:50.073000Z TestFramework (INFO): Chronik still believes the old tx exists
2025-02-09T23:39:50.074000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-09T23:39:50.076000Z TestFramework (INFO): Block now indexed and tx conflict resolved
2025-02-09T23:39:50.078000Z TestFramework (INFO): Pause Chronik for reorg
2025-02-09T23:39:50.079000Z TestFramework (INFO): Reorg last block by mining two blocks
2025-02-09T23:39:50.180000Z TestFramework (INFO): Reorg returns tx to mempool
2025-02-09T23:39:50.181000Z TestFramework (INFO): Chronik still thinks blockA exists
2025-02-09T23:39:50.283000Z TestFramework (INFO): Add block that mines the tx
2025-02-09T23:39:50.384000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-09T23:39:50.386000Z 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/chronik_pause.py", line 160, in run_test
    assert_equal(tx_proto.inputs[0].value, coinvalue)
                 ^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'TxInput' object has no attribute 'value'
2025-02-09T23:39:50.438000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:39:50.540000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_pause_167
2025-02-09T23:39:50.540000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_pause_167/test_framework.log
2025-02-09T23:39:50.540000Z TestFramework (ERROR): 
2025-02-09T23:39:50.540000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_pause_167' to consolidate all logs
2025-02-09T23:39:50.540000Z TestFramework (ERROR): 
2025-02-09T23:39:50.540000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:39:50.540000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:39:50.540000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_confirmed_txs.py ======

------- Stdout: -------
2025-02-09T23:39:14.218000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_script_confirmed_txs_66
2025-02-09T23:39:14.936000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_confirmed_txs.py", line 124, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:39:14.988000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:39:15.139000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_script_confirmed_txs_66
2025-02-09T23:39:15.139000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_script_confirmed_txs_66/test_framework.log
2025-02-09T23:39:15.139000Z TestFramework (ERROR): 
2025-02-09T23:39:15.139000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_script_confirmed_txs_66' to consolidate all logs
2025-02-09T23:39:15.139000Z TestFramework (ERROR): 
2025-02-09T23:39:15.139000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:39:15.139000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:39:15.139000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_history.py ======

------- Stdout: -------
2025-02-09T23:39:19.794000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_script_history_75
2025-02-09T23:39:20.510000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_history.py", line 127, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:39:20.561000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:39:20.712000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_script_history_75
2025-02-09T23:39:20.713000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_script_history_75/test_framework.log
2025-02-09T23:39:20.713000Z TestFramework (ERROR): 
2025-02-09T23:39:20.713000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_script_history_75' to consolidate all logs
2025-02-09T23:39:20.713000Z TestFramework (ERROR): 
2025-02-09T23:39:20.713000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:39:20.713000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:39:20.713000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py ======

------- Stdout: -------
2025-02-09T23:39:48.712000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_script_unconfirmed_txs_170
2025-02-09T23:39:49.782000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_unconfirmed_txs.py", line 151, in run_test
    pb.TxInput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxInput has no "value" field.
2025-02-09T23:39:49.834000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:39:49.935000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_script_unconfirmed_txs_170
2025-02-09T23:39:49.935000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_script_unconfirmed_txs_170/test_framework.log
2025-02-09T23:39:49.935000Z TestFramework (ERROR): 
2025-02-09T23:39:49.935000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_script_unconfirmed_txs_170' to consolidate all logs
2025-02-09T23:39:49.935000Z TestFramework (ERROR): 
2025-02-09T23:39:49.935000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:39:49.935000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:39:49.935000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_utxos.py ======

------- Stdout: -------
2025-02-09T23:39:58.009000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_script_utxos_233
2025-02-09T23:39:59.005000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_utxos.py", line 91, in run_test
    pb.ScriptUtxo(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message ScriptUtxo has no "value" field.
2025-02-09T23:39:59.007000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:39:59.108000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_script_utxos_233
2025-02-09T23:39:59.108000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_script_utxos_233/test_framework.log
2025-02-09T23:39:59.109000Z TestFramework (ERROR): 
2025-02-09T23:39:59.109000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_script_utxos_233' to consolidate all logs
2025-02-09T23:39:59.109000Z TestFramework (ERROR): 
2025-02-09T23:39:59.109000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:39:59.109000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:39:59.109000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_scripthash.py ======

------- Stdout: -------
2025-02-09T23:39:38.294000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_scripthash_121
2025-02-09T23:39:39.858000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_scripthash.py", line 51, in run_test
    self.test_valid_requests()
  File "/work/test/functional/chronik_scripthash.py", line 102, in test_valid_requests
    txs=[genesis_cb_tx()], num_pages=1, num_txs=1
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:39:39.913000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:39:40.014000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_scripthash_121
2025-02-09T23:39:40.014000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_scripthash_121/test_framework.log
2025-02-09T23:39:40.014000Z TestFramework (ERROR): 
2025-02-09T23:39:40.014000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_scripthash_121' to consolidate all logs
2025-02-09T23:39:40.014000Z TestFramework (ERROR): 
2025-02-09T23:39:40.015000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:39:40.015000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:39:40.015000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_alp.py ======

------- Stdout: -------
2025-02-09T23:39:38.810000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_alp_122
2025-02-09T23:39:40.663000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_alp.py", line 100, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:39:40.715000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:39:40.816000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_alp_122
2025-02-09T23:39:40.816000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_alp_122/test_framework.log
2025-02-09T23:39:40.816000Z TestFramework (ERROR): 
2025-02-09T23:39:40.816000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_alp_122' to consolidate all logs
2025-02-09T23:39:40.816000Z TestFramework (ERROR): 
2025-02-09T23:39:40.816000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:39:40.816000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:39:40.816000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_broadcast_txs.py ======

------- Stdout: -------
2025-02-09T23:39:58.072000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_broadcast_txs_235
2025-02-09T23:39:59.022000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_broadcast_txs.py", line 76, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:39:59.074000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:39:59.175000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_broadcast_txs_235
2025-02-09T23:39:59.175000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_broadcast_txs_235/test_framework.log
2025-02-09T23:39:59.175000Z TestFramework (ERROR): 
2025-02-09T23:39:59.176000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_broadcast_txs_235' to consolidate all logs
2025-02-09T23:39:59.176000Z TestFramework (ERROR): 
2025-02-09T23:39:59.176000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:39:59.176000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:39:59.176000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_burn.py ======

------- Stdout: -------
2025-02-09T23:39:58.191000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_burn_236
2025-02-09T23:39:59.158000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_burn.py", line 92, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:39:59.210000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:39:59.311000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_burn_236
2025-02-09T23:39:59.311000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_burn_236/test_framework.log
2025-02-09T23:39:59.311000Z TestFramework (ERROR): 
2025-02-09T23:39:59.311000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_burn_236' to consolidate all logs
2025-02-09T23:39:59.311000Z TestFramework (ERROR): 
2025-02-09T23:39:59.311000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:39:59.311000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:39:59.311000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_id_group.py ======

------- Stdout: -------
2025-02-09T23:39:48.824000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_id_group_172
2025-02-09T23:39:49.905000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_id_group.py", line 95, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:39:49.957000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:39:50.058000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_id_group_172
2025-02-09T23:39:50.058000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_id_group_172/test_framework.log
2025-02-09T23:39:50.058000Z TestFramework (ERROR): 
2025-02-09T23:39:50.058000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_id_group_172' to consolidate all logs
2025-02-09T23:39:50.059000Z TestFramework (ERROR): 
2025-02-09T23:39:50.059000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:39:50.059000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:39:50.059000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_script_group.py ======

------- Stdout: -------
2025-02-09T23:39:58.513000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_script_group_238
2025-02-09T23:39:59.478000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_script_group.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:39:59.529000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:39:59.631000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_script_group_238
2025-02-09T23:39:59.631000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_script_group_238/test_framework.log
2025-02-09T23:39:59.631000Z TestFramework (ERROR): 
2025-02-09T23:39:59.631000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_script_group_238' to consolidate all logs
2025-02-09T23:39:59.631000Z TestFramework (ERROR): 
2025-02-09T23:39:59.631000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:39:59.631000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:39:59.631000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_fungible.py ======

------- Stdout: -------
2025-02-09T23:39:58.594000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_slp_fungible_239
2025-02-09T23:39:59.341000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_fungible.py", line 80, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:39:59.393000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:39:59.494000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_slp_fungible_239
2025-02-09T23:39:59.494000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_slp_fungible_239/test_framework.log
2025-02-09T23:39:59.494000Z TestFramework (ERROR): 
2025-02-09T23:39:59.494000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_slp_fungible_239' to consolidate all logs
2025-02-09T23:39:59.495000Z TestFramework (ERROR): 
2025-02-09T23:39:59.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-02-09T23:39:59.495000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:39:59.495000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py ======

------- Stdout: -------
2025-02-09T23:39:48.842000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_slp_mint_vault_173
2025-02-09T23:39:49.915000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_mint_vault.py", line 119, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:39:49.967000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:39:50.068000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_slp_mint_vault_173
2025-02-09T23:39:50.068000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_slp_mint_vault_173/test_framework.log
2025-02-09T23:39:50.069000Z TestFramework (ERROR): 
2025-02-09T23:39:50.069000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_slp_mint_vault_173' to consolidate all logs
2025-02-09T23:39:50.069000Z TestFramework (ERROR): 
2025-02-09T23:39:50.069000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:39:50.069000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:39:50.069000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_nft1.py ======

------- Stdout: -------
2025-02-09T23:39:58.872000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_slp_nft1_240
2025-02-09T23:39:59.822000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_nft1.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-09T23:39:59.874000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:40:00.025000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_slp_nft1_240
2025-02-09T23:40:00.025000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_slp_nft1_240/test_framework.log
2025-02-09T23:40:00.025000Z TestFramework (ERROR): 
2025-02-09T23:40:00.025000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_token_slp_nft1_240' to consolidate all logs
2025-02-09T23:40:00.025000Z TestFramework (ERROR): 
2025-02-09T23:40:00.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-02-09T23:40:00.025000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:40:00.025000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_tx.py ======

------- Stdout: -------
2025-02-09T23:39:48.918000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_tx_174
2025-02-09T23:39:49.889000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_tx.py", line 64, in run_test
    assert_equal(chronik.tx(GENESIS_CB_TXID).ok(), genesis_cb_tx())
                                                   ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:39:49.941000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:39:50.092000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_tx_174
2025-02-09T23:39:50.092000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_tx_174/test_framework.log
2025-02-09T23:39:50.092000Z TestFramework (ERROR): 
2025-02-09T23:39:50.093000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_tx_174' to consolidate all logs
2025-02-09T23:39:50.093000Z TestFramework (ERROR): 
2025-02-09T23:39:50.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-02-09T23:39:50.093000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:39:50.093000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_ws.py ======

------- Stdout: -------
2025-02-09T23:38:00.015000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_ws_13
2025-02-09T23:38:11.867000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_ws.py", line 120, in run_test
    coinbase_data = coinbase_data_from_block(tip)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/chronik_ws.py", line 116, in coinbase_data_from_block
    return pb.CoinbaseData(
           ^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 535, in init
    copy.add(**val)
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/containers.py", line 276, in add
    new_element = self._message_descriptor._concrete_class(**kwargs)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-09T23:38:11.869000Z TestFramework (INFO): Stopping nodes
2025-02-09T23:38:12.021000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_ws_13
2025-02-09T23:38:12.021000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_ws_13/test_framework.log
2025-02-09T23:38:12.021000Z TestFramework (ERROR): 
2025-02-09T23:38:12.021000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250209_233736/chronik_ws_13' to consolidate all logs
2025-02-09T23:38:12.021000Z TestFramework (ERROR): 
2025-02-09T23:38:12.021000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-09T23:38:12.021000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-09T23:38:12.021000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: chronik_block_txs.py
Bitcoin ABC functional tests: chronik_disable_token_index.py
Bitcoin ABC functional tests: chronik_pause.py
Bitcoin ABC functional tests: chronik_script_confirmed_txs.py
Bitcoin ABC functional tests: chronik_script_history.py
Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py
Bitcoin ABC functional tests: chronik_script_utxos.py
Bitcoin ABC functional tests: chronik_scripthash.py
Bitcoin ABC functional tests: chronik_token_alp.py
Bitcoin ABC functional tests: chronik_token_broadcast_txs.py
Bitcoin ABC functional tests: chronik_token_burn.py
Bitcoin ABC functional tests: chronik_token_id_group.py
Bitcoin ABC functional tests: chronik_token_script_group.py
Bitcoin ABC functional tests: chronik_token_slp_fungible.py
Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py
Bitcoin ABC functional tests: chronik_token_slp_nft1.py
Bitcoin ABC functional tests: chronik_tx.py
Bitcoin ABC functional tests: chronik_ws.py

Tail of the build log:

/work/modules/chronik-client /work/abc-ci-builds/token-server-tests

> chronik-client@3.0.0 prepublish
> npm run build


> chronik-client@3.0.0 build
> tsc


added 265 packages, and audited 267 packages in 5s

48 packages are looking for funding
  run `npm fund` for details

5 vulnerabilities (3 moderate, 2 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> chronik-client@3.0.0 build
> tsc

/work/modules/mock-chronik-client /work/abc-ci-builds/token-server-tests
npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm warn deprecated glob@8.1.0: Glob versions prior to v9 are no longer supported
npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.

added 349 packages, and audited 352 packages in 2s

60 packages are looking for funding
  run `npm fund` for details

1 high severity vulnerability

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

> mock-chronik-client@2.1.3 build
> tsc

mocks/index.ts(31,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'ScriptUtxo'.
mocks/index.ts(39,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'Utxo'.
mocks/index.ts(91,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(105,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxInput'.
mocks/index.ts(113,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(129,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(146,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(156,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(182,17): error TS2353: Object literal may only specify known properties, and 'actualBurnAmount' does not exist in type 'TokenEntry'.
Build token-server-tests failed with exit code 2

Tail of the build log:

/work/modules/chronik-client /work/abc-ci-builds/ecash-herald-tests

> chronik-client@3.0.0 prepublish
> npm run build


> chronik-client@3.0.0 build
> tsc


added 265 packages, and audited 267 packages in 5s

48 packages are looking for funding
  run `npm fund` for details

5 vulnerabilities (3 moderate, 2 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> chronik-client@3.0.0 build
> tsc

/work/modules/mock-chronik-client /work/abc-ci-builds/ecash-herald-tests
npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm warn deprecated glob@8.1.0: Glob versions prior to v9 are no longer supported
npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.

added 349 packages, and audited 352 packages in 2s

60 packages are looking for funding
  run `npm fund` for details

1 high severity vulnerability

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

> mock-chronik-client@2.1.3 build
> tsc

mocks/index.ts(31,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'ScriptUtxo'.
mocks/index.ts(39,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'Utxo'.
mocks/index.ts(91,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(105,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxInput'.
mocks/index.ts(113,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(129,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(146,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(156,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(182,17): error TS2353: Object literal may only specify known properties, and 'actualBurnAmount' does not exist in type 'TokenEntry'.
Build ecash-herald-tests failed with exit code 2

Tail of the build log:

/work/modules/chronik-client /work/abc-ci-builds/cashtab-tests

> chronik-client@3.0.0 prepublish
> npm run build


> chronik-client@3.0.0 build
> tsc


added 265 packages, and audited 267 packages in 5s

48 packages are looking for funding
  run `npm fund` for details

5 vulnerabilities (3 moderate, 2 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> chronik-client@3.0.0 build
> tsc

/work/modules/mock-chronik-client /work/abc-ci-builds/cashtab-tests
npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm warn deprecated glob@8.1.0: Glob versions prior to v9 are no longer supported
npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.

added 349 packages, and audited 352 packages in 2s

60 packages are looking for funding
  run `npm fund` for details

1 high severity vulnerability

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

> mock-chronik-client@2.1.3 build
> tsc

mocks/index.ts(31,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'ScriptUtxo'.
mocks/index.ts(39,5): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'Utxo'.
mocks/index.ts(91,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(105,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxInput'.
mocks/index.ts(113,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(129,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(146,21): error TS2353: Object literal may only specify known properties, and 'amount' does not exist in type 'Token'.
mocks/index.ts(156,17): error TS2353: Object literal may only specify known properties, and 'value' does not exist in type 'TxOutput'.
mocks/index.ts(182,17): error TS2353: Object literal may only specify known properties, and 'actualBurnAmount' does not exist in type 'TokenEntry'.
Build cashtab-tests failed with exit code 2

update mocks in mock-chronik-client (no version bump)

Failed tests logs:

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

------- Stdout: -------
2025-02-10T21:40:41.501000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_block_txs_162
2025-02-10T21:40:42.243000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_block_txs.py", line 92, in run_test
    txs=[genesis_cb_tx()],
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:40:42.295000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:40:42.446000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_block_txs_162
2025-02-10T21:40:42.446000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_block_txs_162/test_framework.log
2025-02-10T21:40:42.446000Z TestFramework (ERROR): 
2025-02-10T21:40:42.446000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_block_txs_162' to consolidate all logs
2025-02-10T21:40:42.446000Z TestFramework (ERROR): 
2025-02-10T21:40:42.446000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:40:42.446000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:40:42.446000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_disable_token_index.py ======

------- Stdout: -------
2025-02-10T21:40:31.459000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_disable_token_index_119
2025-02-10T21:40:32.477000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_disable_token_index.py", line 72, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:40:32.528000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:40:32.730000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_disable_token_index_119
2025-02-10T21:40:32.730000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_disable_token_index_119/test_framework.log
2025-02-10T21:40:32.730000Z TestFramework (ERROR): 
2025-02-10T21:40:32.730000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_disable_token_index_119' to consolidate all logs
2025-02-10T21:40:32.730000Z TestFramework (ERROR): 
2025-02-10T21:40:32.730000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:40:32.730000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:40:32.731000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_pause.py ======

------- Stdout: -------
2025-02-10T21:40:42.130000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_pause_167
2025-02-10T21:40:43.001000Z TestFramework (INFO): Restart to allow pause
2025-02-10T21:40:43.506000Z TestFramework (INFO): Generate coin + mature for testing
2025-02-10T21:40:43.588000Z TestFramework (INFO): Pause Chronik indexing
2025-02-10T21:40:43.588000Z TestFramework (INFO): Send using P2P network
2025-02-10T21:40:43.639000Z TestFramework (INFO): Tx not yet picked up by chronik
2025-02-10T21:40:43.740000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-10T21:40:43.741000Z TestFramework (INFO): Chronik has now indexed the tx
2025-02-10T21:40:43.741000Z TestFramework (INFO): Pause Chronik indexing for block processing
2025-02-10T21:40:43.742000Z TestFramework (INFO): Create block with conflicting tx
2025-02-10T21:40:43.843000Z TestFramework (INFO): Block not indexed yet
2025-02-10T21:40:43.944000Z TestFramework (INFO): Chronik still believes the old tx exists
2025-02-10T21:40:43.945000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-10T21:40:43.946000Z TestFramework (INFO): Block now indexed and tx conflict resolved
2025-02-10T21:40:43.947000Z TestFramework (INFO): Pause Chronik for reorg
2025-02-10T21:40:43.947000Z TestFramework (INFO): Reorg last block by mining two blocks
2025-02-10T21:40:44.048000Z TestFramework (INFO): Reorg returns tx to mempool
2025-02-10T21:40:44.049000Z TestFramework (INFO): Chronik still thinks blockA exists
2025-02-10T21:40:44.150000Z TestFramework (INFO): Add block that mines the tx
2025-02-10T21:40:44.252000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-10T21:40:44.255000Z 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/chronik_pause.py", line 160, in run_test
    assert_equal(tx_proto.inputs[0].value, coinvalue)
                 ^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'TxInput' object has no attribute 'value'
2025-02-10T21:40:44.307000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:40:44.408000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_pause_167
2025-02-10T21:40:44.408000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_pause_167/test_framework.log
2025-02-10T21:40:44.408000Z TestFramework (ERROR): 
2025-02-10T21:40:44.408000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_pause_167' to consolidate all logs
2025-02-10T21:40:44.408000Z TestFramework (ERROR): 
2025-02-10T21:40:44.408000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:40:44.408000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:40:44.409000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_confirmed_txs.py ======

------- Stdout: -------
2025-02-10T21:40:07.470000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_script_confirmed_txs_66
2025-02-10T21:40:08.189000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_confirmed_txs.py", line 124, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:40:08.241000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:40:08.392000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_script_confirmed_txs_66
2025-02-10T21:40:08.392000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_script_confirmed_txs_66/test_framework.log
2025-02-10T21:40:08.392000Z TestFramework (ERROR): 
2025-02-10T21:40:08.392000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_script_confirmed_txs_66' to consolidate all logs
2025-02-10T21:40:08.392000Z TestFramework (ERROR): 
2025-02-10T21:40:08.392000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:40:08.392000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:40:08.392000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_history.py ======

------- Stdout: -------
2025-02-10T21:40:13.367000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_script_history_75
2025-02-10T21:40:14.330000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_history.py", line 127, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:40:14.382000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:40:14.533000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_script_history_75
2025-02-10T21:40:14.533000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_script_history_75/test_framework.log
2025-02-10T21:40:14.534000Z TestFramework (ERROR): 
2025-02-10T21:40:14.534000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_script_history_75' to consolidate all logs
2025-02-10T21:40:14.534000Z TestFramework (ERROR): 
2025-02-10T21:40:14.534000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:40:14.534000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:40:14.534000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py ======

------- Stdout: -------
2025-02-10T21:40:42.586000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_script_unconfirmed_txs_170
2025-02-10T21:40:43.695000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_unconfirmed_txs.py", line 151, in run_test
    pb.TxInput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxInput has no "value" field.
2025-02-10T21:40:43.746000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:40:43.847000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_script_unconfirmed_txs_170
2025-02-10T21:40:43.847000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_script_unconfirmed_txs_170/test_framework.log
2025-02-10T21:40:43.848000Z TestFramework (ERROR): 
2025-02-10T21:40:43.848000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_script_unconfirmed_txs_170' to consolidate all logs
2025-02-10T21:40:43.848000Z TestFramework (ERROR): 
2025-02-10T21:40:43.848000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:40:43.848000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:40:43.848000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_utxos.py ======

------- Stdout: -------
2025-02-10T21:40:51.195000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_script_utxos_233
2025-02-10T21:40:52.195000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_utxos.py", line 91, in run_test
    pb.ScriptUtxo(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message ScriptUtxo has no "value" field.
2025-02-10T21:40:52.247000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:40:52.398000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_script_utxos_233
2025-02-10T21:40:52.398000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_script_utxos_233/test_framework.log
2025-02-10T21:40:52.398000Z TestFramework (ERROR): 
2025-02-10T21:40:52.398000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_script_utxos_233' to consolidate all logs
2025-02-10T21:40:52.399000Z TestFramework (ERROR): 
2025-02-10T21:40:52.399000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:40:52.399000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:40:52.399000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_scripthash.py ======

------- Stdout: -------
2025-02-10T21:40:32.857000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_scripthash_121
2025-02-10T21:40:33.923000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_scripthash.py", line 51, in run_test
    self.test_valid_requests()
  File "/work/test/functional/chronik_scripthash.py", line 102, in test_valid_requests
    txs=[genesis_cb_tx()], num_pages=1, num_txs=1
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:40:33.925000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:40:34.026000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_scripthash_121
2025-02-10T21:40:34.026000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_scripthash_121/test_framework.log
2025-02-10T21:40:34.026000Z TestFramework (ERROR): 
2025-02-10T21:40:34.027000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_scripthash_121' to consolidate all logs
2025-02-10T21:40:34.027000Z TestFramework (ERROR): 
2025-02-10T21:40:34.027000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:40:34.027000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:40:34.027000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_alp.py ======

------- Stdout: -------
2025-02-10T21:40:33.231000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_alp_122
2025-02-10T21:40:34.295000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_alp.py", line 100, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:40:34.347000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:40:34.598000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_alp_122
2025-02-10T21:40:34.598000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_alp_122/test_framework.log
2025-02-10T21:40:34.598000Z TestFramework (ERROR): 
2025-02-10T21:40:34.598000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_alp_122' to consolidate all logs
2025-02-10T21:40:34.598000Z TestFramework (ERROR): 
2025-02-10T21:40:34.599000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:40:34.599000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:40:34.599000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_broadcast_txs.py ======

------- Stdout: -------
2025-02-10T21:40:51.339000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_broadcast_txs_235
2025-02-10T21:40:52.297000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_broadcast_txs.py", line 76, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:40:52.349000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:40:52.450000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_broadcast_txs_235
2025-02-10T21:40:52.450000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_broadcast_txs_235/test_framework.log
2025-02-10T21:40:52.450000Z TestFramework (ERROR): 
2025-02-10T21:40:52.450000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_broadcast_txs_235' to consolidate all logs
2025-02-10T21:40:52.450000Z TestFramework (ERROR): 
2025-02-10T21:40:52.450000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:40:52.451000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:40:52.451000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_burn.py ======

------- Stdout: -------
2025-02-10T21:40:51.384000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_burn_236
2025-02-10T21:40:52.365000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_burn.py", line 92, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:40:52.417000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:40:52.518000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_burn_236
2025-02-10T21:40:52.518000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_burn_236/test_framework.log
2025-02-10T21:40:52.518000Z TestFramework (ERROR): 
2025-02-10T21:40:52.518000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_burn_236' to consolidate all logs
2025-02-10T21:40:52.518000Z TestFramework (ERROR): 
2025-02-10T21:40:52.518000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:40:52.518000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:40:52.518000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_id_group.py ======

------- Stdout: -------
2025-02-10T21:40:42.765000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_id_group_172
2025-02-10T21:40:43.836000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_id_group.py", line 95, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:40:43.887000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:40:43.989000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_id_group_172
2025-02-10T21:40:43.989000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_id_group_172/test_framework.log
2025-02-10T21:40:43.989000Z TestFramework (ERROR): 
2025-02-10T21:40:43.989000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_id_group_172' to consolidate all logs
2025-02-10T21:40:43.989000Z TestFramework (ERROR): 
2025-02-10T21:40:43.989000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:40:43.989000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:40:43.989000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_script_group.py ======

------- Stdout: -------
2025-02-10T21:40:51.548000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_script_group_238
2025-02-10T21:40:52.504000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_script_group.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:40:52.555000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:40:52.656000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_script_group_238
2025-02-10T21:40:52.656000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_script_group_238/test_framework.log
2025-02-10T21:40:52.656000Z TestFramework (ERROR): 
2025-02-10T21:40:52.656000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_script_group_238' to consolidate all logs
2025-02-10T21:40:52.656000Z TestFramework (ERROR): 
2025-02-10T21:40:52.656000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:40:52.657000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:40:52.657000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_fungible.py ======

------- Stdout: -------
2025-02-10T21:40:51.558000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_slp_fungible_239
2025-02-10T21:40:52.512000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_fungible.py", line 80, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:40:52.564000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:40:52.665000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_slp_fungible_239
2025-02-10T21:40:52.665000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_slp_fungible_239/test_framework.log
2025-02-10T21:40:52.665000Z TestFramework (ERROR): 
2025-02-10T21:40:52.665000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_slp_fungible_239' to consolidate all logs
2025-02-10T21:40:52.665000Z TestFramework (ERROR): 
2025-02-10T21:40:52.665000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:40:52.665000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:40:52.665000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py ======

------- Stdout: -------
2025-02-10T21:40:42.767000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_slp_mint_vault_173
2025-02-10T21:40:43.862000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_mint_vault.py", line 119, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:40:43.914000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:40:44.015000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_slp_mint_vault_173
2025-02-10T21:40:44.015000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_slp_mint_vault_173/test_framework.log
2025-02-10T21:40:44.015000Z TestFramework (ERROR): 
2025-02-10T21:40:44.015000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_slp_mint_vault_173' to consolidate all logs
2025-02-10T21:40:44.015000Z TestFramework (ERROR): 
2025-02-10T21:40:44.015000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:40:44.015000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:40:44.015000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_nft1.py ======

------- Stdout: -------
2025-02-10T21:40:51.595000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_slp_nft1_240
2025-02-10T21:40:52.570000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_nft1.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:40:52.622000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:40:52.723000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_slp_nft1_240
2025-02-10T21:40:52.723000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_slp_nft1_240/test_framework.log
2025-02-10T21:40:52.723000Z TestFramework (ERROR): 
2025-02-10T21:40:52.723000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_token_slp_nft1_240' to consolidate all logs
2025-02-10T21:40:52.723000Z TestFramework (ERROR): 
2025-02-10T21:40:52.723000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:40:52.723000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:40:52.723000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_tx.py ======

------- Stdout: -------
2025-02-10T21:40:43.032000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_tx_174
2025-02-10T21:40:44.027000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_tx.py", line 64, in run_test
    assert_equal(chronik.tx(GENESIS_CB_TXID).ok(), genesis_cb_tx())
                                                   ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:40:44.079000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:40:44.230000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_tx_174
2025-02-10T21:40:44.230000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_tx_174/test_framework.log
2025-02-10T21:40:44.230000Z TestFramework (ERROR): 
2025-02-10T21:40:44.231000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_tx_174' to consolidate all logs
2025-02-10T21:40:44.231000Z TestFramework (ERROR): 
2025-02-10T21:40:44.231000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:40:44.231000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:40:44.231000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_ws.py ======

------- Stdout: -------
2025-02-10T21:39:01.235000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_ws_13
2025-02-10T21:39:12.449000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_ws.py", line 120, in run_test
    coinbase_data = coinbase_data_from_block(tip)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/chronik_ws.py", line 116, in coinbase_data_from_block
    return pb.CoinbaseData(
           ^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 535, in init
    copy.add(**val)
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/containers.py", line 276, in add
    new_element = self._message_descriptor._concrete_class(**kwargs)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:39:12.501000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:39:12.602000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_ws_13
2025-02-10T21:39:12.603000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_ws_13/test_framework.log
2025-02-10T21:39:12.603000Z TestFramework (ERROR): 
2025-02-10T21:39:12.603000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_213833/chronik_ws_13' to consolidate all logs
2025-02-10T21:39:12.603000Z TestFramework (ERROR): 
2025-02-10T21:39:12.603000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:39:12.603000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:39:12.603000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: chronik_block_txs.py
Bitcoin ABC functional tests: chronik_disable_token_index.py
Bitcoin ABC functional tests: chronik_pause.py
Bitcoin ABC functional tests: chronik_script_confirmed_txs.py
Bitcoin ABC functional tests: chronik_script_history.py
Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py
Bitcoin ABC functional tests: chronik_script_utxos.py
Bitcoin ABC functional tests: chronik_scripthash.py
Bitcoin ABC functional tests: chronik_token_alp.py
Bitcoin ABC functional tests: chronik_token_broadcast_txs.py
Bitcoin ABC functional tests: chronik_token_burn.py
Bitcoin ABC functional tests: chronik_token_id_group.py
Bitcoin ABC functional tests: chronik_token_script_group.py
Bitcoin ABC functional tests: chronik_token_slp_fungible.py
Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py
Bitcoin ABC functional tests: chronik_token_slp_nft1.py
Bitcoin ABC functional tests: chronik_tx.py
Bitcoin ABC functional tests: chronik_ws.py

Tail of the build log:

Run `npm audit` for details.

> ecash-lib@3.0.0 build
> tsc && tsc -p ./tsconfig.build.json && cp -r ./src/ffi ./dist

/work/modules/ecash-agora /work/abc-ci-builds/cashtab-tests

added 364 packages, and audited 367 packages in 1s

60 packages are looking for funding
  run `npm fund` for details

2 vulnerabilities (1 moderate, 1 high)

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

> ecash-agora@2.0.0 build
> tsc && tsc -p ./tsconfig.build.json

/work/cashtab /work/abc-ci-builds/cashtab-tests
npm warn deprecated @humanwhocodes/config-array@0.11.14: Use @eslint/config-array instead
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm warn deprecated eslint@8.56.0: This version is no longer supported. Please see https://eslint.org/version-support for other options.

added 1494 packages, and audited 3315 packages in 24s

320 packages are looking for funding
  run `npm fund` for details

8 vulnerabilities (4 moderate, 4 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> cashtab@3.13.4 build
> node scripts/build.js

Creating an optimized production build...
Failed to compile.

TS2322: Type 'string' is not assignable to type 'bigint'.
    38 |     tokenType: DUMMY_TOKEN_TYPE_ALP,
    39 |     tokenId: MOCK_TOKEN_ID,
  > 40 |     atoms: '1000',
       |     ^^^^^
    41 |     isMintBaton: false,
    42 | };
    43 | const DUMMY_UTXO: CashtabUtxo = {


Build cashtab-tests failed with exit code 1

Failed tests logs:

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

------- Stdout: -------
2025-02-10T21:49:18.159000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_block_txs_162
2025-02-10T21:49:20.090000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_block_txs.py", line 92, in run_test
    txs=[genesis_cb_tx()],
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:49:20.143000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:49:20.444000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_block_txs_162
2025-02-10T21:49:20.444000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_block_txs_162/test_framework.log
2025-02-10T21:49:20.444000Z TestFramework (ERROR): 
2025-02-10T21:49:20.444000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_block_txs_162' to consolidate all logs
2025-02-10T21:49:20.444000Z TestFramework (ERROR): 
2025-02-10T21:49:20.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-02-10T21:49:20.444000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:49:20.444000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_disable_token_index.py ======

------- Stdout: -------
2025-02-10T21:48:58.427000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_disable_token_index_119
2025-02-10T21:49:01.590000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_disable_token_index.py", line 72, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:49:01.642000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:49:02.094000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_disable_token_index_119
2025-02-10T21:49:02.095000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_disable_token_index_119/test_framework.log
2025-02-10T21:49:02.095000Z TestFramework (ERROR): 
2025-02-10T21:49:02.095000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_disable_token_index_119' to consolidate all logs
2025-02-10T21:49:02.095000Z TestFramework (ERROR): 
2025-02-10T21:49:02.096000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:49:02.096000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:49:02.096000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_pause.py ======

------- Stdout: -------
2025-02-10T21:49:19.831000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_pause_167
2025-02-10T21:49:21.683000Z TestFramework (INFO): Restart to allow pause
2025-02-10T21:49:22.791000Z TestFramework (INFO): Generate coin + mature for testing
2025-02-10T21:49:22.904000Z TestFramework (INFO): Pause Chronik indexing
2025-02-10T21:49:22.905000Z TestFramework (INFO): Send using P2P network
2025-02-10T21:49:22.956000Z TestFramework (INFO): Tx not yet picked up by chronik
2025-02-10T21:49:23.056000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-10T21:49:23.057000Z TestFramework (INFO): Chronik has now indexed the tx
2025-02-10T21:49:23.058000Z TestFramework (INFO): Pause Chronik indexing for block processing
2025-02-10T21:49:23.058000Z TestFramework (INFO): Create block with conflicting tx
2025-02-10T21:49:23.159000Z TestFramework (INFO): Block not indexed yet
2025-02-10T21:49:23.260000Z TestFramework (INFO): Chronik still believes the old tx exists
2025-02-10T21:49:23.261000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-10T21:49:23.262000Z TestFramework (INFO): Block now indexed and tx conflict resolved
2025-02-10T21:49:23.263000Z TestFramework (INFO): Pause Chronik for reorg
2025-02-10T21:49:23.263000Z TestFramework (INFO): Reorg last block by mining two blocks
2025-02-10T21:49:23.364000Z TestFramework (INFO): Reorg returns tx to mempool
2025-02-10T21:49:23.365000Z TestFramework (INFO): Chronik still thinks blockA exists
2025-02-10T21:49:23.466000Z TestFramework (INFO): Add block that mines the tx
2025-02-10T21:49:23.568000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-10T21:49:23.576000Z 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/chronik_pause.py", line 160, in run_test
    assert_equal(tx_proto.inputs[0].value, coinvalue)
                 ^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'TxInput' object has no attribute 'value'
2025-02-10T21:49:23.630000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:49:23.883000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_pause_167
2025-02-10T21:49:23.883000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_pause_167/test_framework.log
2025-02-10T21:49:23.884000Z TestFramework (ERROR): 
2025-02-10T21:49:23.884000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_pause_167' to consolidate all logs
2025-02-10T21:49:23.884000Z TestFramework (ERROR): 
2025-02-10T21:49:23.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-02-10T21:49:23.884000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:49:23.884000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_confirmed_txs.py ======

------- Stdout: -------
2025-02-10T21:48:11.561000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_script_confirmed_txs_66
2025-02-10T21:48:13.472000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_confirmed_txs.py", line 124, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:48:13.525000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:48:13.826000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_script_confirmed_txs_66
2025-02-10T21:48:13.826000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_script_confirmed_txs_66/test_framework.log
2025-02-10T21:48:13.826000Z TestFramework (ERROR): 
2025-02-10T21:48:13.827000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_script_confirmed_txs_66' to consolidate all logs
2025-02-10T21:48:13.827000Z TestFramework (ERROR): 
2025-02-10T21:48: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-02-10T21:48:13.827000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:48:13.827000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_history.py ======

------- Stdout: -------
2025-02-10T21:48:19.905000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_script_history_75
2025-02-10T21:48:21.813000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_history.py", line 127, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:48:21.864000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:48:22.165000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_script_history_75
2025-02-10T21:48:22.165000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_script_history_75/test_framework.log
2025-02-10T21:48:22.166000Z TestFramework (ERROR): 
2025-02-10T21:48:22.166000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_script_history_75' to consolidate all logs
2025-02-10T21:48:22.166000Z TestFramework (ERROR): 
2025-02-10T21:48:22.166000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:48:22.166000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:48:22.166000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py ======

------- Stdout: -------
2025-02-10T21:49:20.720000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_script_unconfirmed_txs_170
2025-02-10T21:49:22.733000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_unconfirmed_txs.py", line 151, in run_test
    pb.TxInput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxInput has no "value" field.
2025-02-10T21:49:22.785000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:49:23.038000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_script_unconfirmed_txs_170
2025-02-10T21:49:23.038000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_script_unconfirmed_txs_170/test_framework.log
2025-02-10T21:49:23.038000Z TestFramework (ERROR): 
2025-02-10T21:49:23.038000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_script_unconfirmed_txs_170' to consolidate all logs
2025-02-10T21:49:23.038000Z TestFramework (ERROR): 
2025-02-10T21:49:23.038000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:49:23.038000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:49:23.038000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_utxos.py ======

------- Stdout: -------
2025-02-10T21:49:36.955000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_script_utxos_233
2025-02-10T21:49:38.915000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_utxos.py", line 91, in run_test
    pb.ScriptUtxo(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message ScriptUtxo has no "value" field.
2025-02-10T21:49:38.969000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:49:39.270000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_script_utxos_233
2025-02-10T21:49:39.270000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_script_utxos_233/test_framework.log
2025-02-10T21:49:39.270000Z TestFramework (ERROR): 
2025-02-10T21:49:39.270000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_script_utxos_233' to consolidate all logs
2025-02-10T21:49:39.270000Z TestFramework (ERROR): 
2025-02-10T21:49:39.270000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:49:39.270000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:49:39.270000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_scripthash.py ======

------- Stdout: -------
2025-02-10T21:48:59.939000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_scripthash_121
2025-02-10T21:49:03.239000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_scripthash.py", line 51, in run_test
    self.test_valid_requests()
  File "/work/test/functional/chronik_scripthash.py", line 102, in test_valid_requests
    txs=[genesis_cb_tx()], num_pages=1, num_txs=1
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:49:03.292000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:49:03.593000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_scripthash_121
2025-02-10T21:49:03.593000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_scripthash_121/test_framework.log
2025-02-10T21:49:03.593000Z TestFramework (ERROR): 
2025-02-10T21:49:03.593000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_scripthash_121' to consolidate all logs
2025-02-10T21:49:03.593000Z TestFramework (ERROR): 
2025-02-10T21:49:03.593000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:49:03.593000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:49:03.593000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_alp.py ======

------- Stdout: -------
2025-02-10T21:49:01.428000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_alp_122
2025-02-10T21:49:04.213000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_alp.py", line 100, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:49:04.265000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:49:04.617000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_alp_122
2025-02-10T21:49:04.617000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_alp_122/test_framework.log
2025-02-10T21:49:04.617000Z TestFramework (ERROR): 
2025-02-10T21:49:04.617000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_alp_122' to consolidate all logs
2025-02-10T21:49:04.617000Z TestFramework (ERROR): 
2025-02-10T21:49:04.617000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:49:04.617000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:49:04.617000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_broadcast_txs.py ======

------- Stdout: -------
2025-02-10T21:49:37.165000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_broadcast_txs_235
2025-02-10T21:49:39.051000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_broadcast_txs.py", line 76, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:49:39.103000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:49:39.354000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_broadcast_txs_235
2025-02-10T21:49:39.354000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_broadcast_txs_235/test_framework.log
2025-02-10T21:49:39.354000Z TestFramework (ERROR): 
2025-02-10T21:49:39.354000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_broadcast_txs_235' to consolidate all logs
2025-02-10T21:49:39.354000Z TestFramework (ERROR): 
2025-02-10T21:49:39.354000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:49:39.354000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:49:39.354000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_burn.py ======

------- Stdout: -------
2025-02-10T21:49:37.498000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_burn_236
2025-02-10T21:49:39.636000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_burn.py", line 92, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:49:39.687000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:49:39.939000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_burn_236
2025-02-10T21:49:39.939000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_burn_236/test_framework.log
2025-02-10T21:49:39.939000Z TestFramework (ERROR): 
2025-02-10T21:49:39.939000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_burn_236' to consolidate all logs
2025-02-10T21:49:39.939000Z TestFramework (ERROR): 
2025-02-10T21:49:39.939000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:49:39.939000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:49:39.939000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_id_group.py ======

------- Stdout: -------
2025-02-10T21:49:20.920000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_id_group_172
2025-02-10T21:49:22.944000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_id_group.py", line 95, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:49:22.996000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:49:23.249000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_id_group_172
2025-02-10T21:49:23.249000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_id_group_172/test_framework.log
2025-02-10T21:49:23.249000Z TestFramework (ERROR): 
2025-02-10T21:49:23.249000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_id_group_172' to consolidate all logs
2025-02-10T21:49:23.249000Z TestFramework (ERROR): 
2025-02-10T21:49:23.249000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:49:23.249000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:49:23.249000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_script_group.py ======

------- Stdout: -------
2025-02-10T21:49:37.973000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_script_group_238
2025-02-10T21:49:39.930000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_script_group.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:49:39.982000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:49:40.283000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_script_group_238
2025-02-10T21:49:40.283000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_script_group_238/test_framework.log
2025-02-10T21:49:40.283000Z TestFramework (ERROR): 
2025-02-10T21:49:40.283000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_script_group_238' to consolidate all logs
2025-02-10T21:49:40.283000Z TestFramework (ERROR): 
2025-02-10T21:49:40.283000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:49:40.284000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:49:40.284000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_fungible.py ======

------- Stdout: -------
2025-02-10T21:49:38.030000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_slp_fungible_239
2025-02-10T21:49:39.933000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_fungible.py", line 80, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:49:39.985000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:49:40.286000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_slp_fungible_239
2025-02-10T21:49:40.286000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_slp_fungible_239/test_framework.log
2025-02-10T21:49:40.286000Z TestFramework (ERROR): 
2025-02-10T21:49:40.286000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_slp_fungible_239' to consolidate all logs
2025-02-10T21:49:40.286000Z TestFramework (ERROR): 
2025-02-10T21:49:40.286000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:49:40.286000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:49:40.286000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py ======

------- Stdout: -------
2025-02-10T21:49:21.265000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_slp_mint_vault_173
2025-02-10T21:49:23.514000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_mint_vault.py", line 119, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:49:23.565000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:49:23.819000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_slp_mint_vault_173
2025-02-10T21:49:23.819000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_slp_mint_vault_173/test_framework.log
2025-02-10T21:49:23.819000Z TestFramework (ERROR): 
2025-02-10T21:49:23.819000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_slp_mint_vault_173' to consolidate all logs
2025-02-10T21:49:23.819000Z TestFramework (ERROR): 
2025-02-10T21:49:23.819000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:49:23.819000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:49:23.819000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_nft1.py ======

------- Stdout: -------
2025-02-10T21:49:38.265000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_slp_nft1_240
2025-02-10T21:49:40.150000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_nft1.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:49:40.202000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:49:40.453000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_slp_nft1_240
2025-02-10T21:49:40.453000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_slp_nft1_240/test_framework.log
2025-02-10T21:49:40.453000Z TestFramework (ERROR): 
2025-02-10T21:49:40.453000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_token_slp_nft1_240' to consolidate all logs
2025-02-10T21:49:40.453000Z TestFramework (ERROR): 
2025-02-10T21:49:40.453000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:49:40.453000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:49:40.453000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_tx.py ======

------- Stdout: -------
2025-02-10T21:49:21.443000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_tx_174
2025-02-10T21:49:23.361000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_tx.py", line 64, in run_test
    assert_equal(chronik.tx(GENESIS_CB_TXID).ok(), genesis_cb_tx())
                                                   ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:49:23.412000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:49:23.714000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_tx_174
2025-02-10T21:49:23.714000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_tx_174/test_framework.log
2025-02-10T21:49:23.714000Z TestFramework (ERROR): 
2025-02-10T21:49:23.715000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_tx_174' to consolidate all logs
2025-02-10T21:49:23.715000Z TestFramework (ERROR): 
2025-02-10T21:49:23.715000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:49:23.715000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:49:23.716000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_ws.py ======

------- Stdout: -------
2025-02-10T21:46:55.418000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_ws_13
2025-02-10T21:47:08.005000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_ws.py", line 120, in run_test
    coinbase_data = coinbase_data_from_block(tip)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/chronik_ws.py", line 116, in coinbase_data_from_block
    return pb.CoinbaseData(
           ^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 535, in init
    copy.add(**val)
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/containers.py", line 276, in add
    new_element = self._message_descriptor._concrete_class(**kwargs)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:47:08.057000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:47:08.208000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_ws_13
2025-02-10T21:47:08.208000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_ws_13/test_framework.log
2025-02-10T21:47:08.208000Z TestFramework (ERROR): 
2025-02-10T21:47:08.208000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_214625/chronik_ws_13' to consolidate all logs
2025-02-10T21:47:08.208000Z TestFramework (ERROR): 
2025-02-10T21:47:08.208000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:47:08.208000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:47:08.208000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: chronik_block_txs.py
Bitcoin ABC functional tests: chronik_disable_token_index.py
Bitcoin ABC functional tests: chronik_pause.py
Bitcoin ABC functional tests: chronik_script_confirmed_txs.py
Bitcoin ABC functional tests: chronik_script_history.py
Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py
Bitcoin ABC functional tests: chronik_script_utxos.py
Bitcoin ABC functional tests: chronik_scripthash.py
Bitcoin ABC functional tests: chronik_token_alp.py
Bitcoin ABC functional tests: chronik_token_broadcast_txs.py
Bitcoin ABC functional tests: chronik_token_burn.py
Bitcoin ABC functional tests: chronik_token_id_group.py
Bitcoin ABC functional tests: chronik_token_script_group.py
Bitcoin ABC functional tests: chronik_token_slp_fungible.py
Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py
Bitcoin ABC functional tests: chronik_token_slp_nft1.py
Bitcoin ABC functional tests: chronik_tx.py
Bitcoin ABC functional tests: chronik_ws.py

Failed tests logs:

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

------- Stdout: -------
2025-02-10T21:55:00.758000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_block_txs_162
2025-02-10T21:55:01.729000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_block_txs.py", line 92, in run_test
    txs=[genesis_cb_tx()],
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:55:01.781000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:55:01.935000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_block_txs_162
2025-02-10T21:55:01.935000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_block_txs_162/test_framework.log
2025-02-10T21:55:01.935000Z TestFramework (ERROR): 
2025-02-10T21:55:01.935000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_block_txs_162' to consolidate all logs
2025-02-10T21:55:01.935000Z TestFramework (ERROR): 
2025-02-10T21:55:01.935000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:55:01.935000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:55:01.935000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_disable_token_index.py ======

------- Stdout: -------
2025-02-10T21:54:50.999000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_disable_token_index_119
2025-02-10T21:54:51.936000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_disable_token_index.py", line 72, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:54:51.987000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:54:52.191000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_disable_token_index_119
2025-02-10T21:54:52.191000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_disable_token_index_119/test_framework.log
2025-02-10T21:54:52.191000Z TestFramework (ERROR): 
2025-02-10T21:54:52.191000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_disable_token_index_119' to consolidate all logs
2025-02-10T21:54:52.191000Z TestFramework (ERROR): 
2025-02-10T21:54:52.191000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:54:52.191000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:54:52.191000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_pause.py ======

------- Stdout: -------
2025-02-10T21:55:01.556000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_pause_167
2025-02-10T21:55:02.456000Z TestFramework (INFO): Restart to allow pause
2025-02-10T21:55:03.217000Z TestFramework (INFO): Generate coin + mature for testing
2025-02-10T21:55:03.316000Z TestFramework (INFO): Pause Chronik indexing
2025-02-10T21:55:03.317000Z TestFramework (INFO): Send using P2P network
2025-02-10T21:55:03.368000Z TestFramework (INFO): Tx not yet picked up by chronik
2025-02-10T21:55:03.469000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-10T21:55:03.470000Z TestFramework (INFO): Chronik has now indexed the tx
2025-02-10T21:55:03.470000Z TestFramework (INFO): Pause Chronik indexing for block processing
2025-02-10T21:55:03.471000Z TestFramework (INFO): Create block with conflicting tx
2025-02-10T21:55:03.572000Z TestFramework (INFO): Block not indexed yet
2025-02-10T21:55:03.673000Z TestFramework (INFO): Chronik still believes the old tx exists
2025-02-10T21:55:03.674000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-10T21:55:03.674000Z TestFramework (INFO): Block now indexed and tx conflict resolved
2025-02-10T21:55:03.675000Z TestFramework (INFO): Pause Chronik for reorg
2025-02-10T21:55:03.676000Z TestFramework (INFO): Reorg last block by mining two blocks
2025-02-10T21:55:03.777000Z TestFramework (INFO): Reorg returns tx to mempool
2025-02-10T21:55:03.777000Z TestFramework (INFO): Chronik still thinks blockA exists
2025-02-10T21:55:03.879000Z TestFramework (INFO): Add block that mines the tx
2025-02-10T21:55:03.981000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-10T21:55:03.983000Z 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/chronik_pause.py", line 160, in run_test
    assert_equal(tx_proto.inputs[0].value, coinvalue)
                 ^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'TxInput' object has no attribute 'value'
2025-02-10T21:55:04.034000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:55:04.135000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_pause_167
2025-02-10T21:55:04.135000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_pause_167/test_framework.log
2025-02-10T21:55:04.135000Z TestFramework (ERROR): 
2025-02-10T21:55:04.136000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_pause_167' to consolidate all logs
2025-02-10T21:55:04.136000Z TestFramework (ERROR): 
2025-02-10T21:55:04.136000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:55:04.136000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:55:04.136000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_confirmed_txs.py ======

------- Stdout: -------
2025-02-10T21:54:27.492000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_script_confirmed_txs_66
2025-02-10T21:54:28.471000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_confirmed_txs.py", line 124, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:54:28.522000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:54:28.673000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_script_confirmed_txs_66
2025-02-10T21:54:28.673000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_script_confirmed_txs_66/test_framework.log
2025-02-10T21:54:28.673000Z TestFramework (ERROR): 
2025-02-10T21:54:28.673000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_script_confirmed_txs_66' to consolidate all logs
2025-02-10T21:54:28.673000Z TestFramework (ERROR): 
2025-02-10T21:54:28.674000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:54:28.674000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:54:28.674000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_history.py ======

------- Stdout: -------
2025-02-10T21:54:31.187000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_script_history_75
2025-02-10T21:54:31.900000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_history.py", line 127, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:54:31.901000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:54:32.103000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_script_history_75
2025-02-10T21:54:32.103000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_script_history_75/test_framework.log
2025-02-10T21:54:32.103000Z TestFramework (ERROR): 
2025-02-10T21:54:32.103000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_script_history_75' to consolidate all logs
2025-02-10T21:54:32.103000Z TestFramework (ERROR): 
2025-02-10T21:54:32.103000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:54:32.103000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:54:32.103000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py ======

------- Stdout: -------
2025-02-10T21:55:02.084000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_script_unconfirmed_txs_170
2025-02-10T21:55:02.952000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_unconfirmed_txs.py", line 151, in run_test
    pb.TxInput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxInput has no "value" field.
2025-02-10T21:55:03.004000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:55:03.155000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_script_unconfirmed_txs_170
2025-02-10T21:55:03.156000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_script_unconfirmed_txs_170/test_framework.log
2025-02-10T21:55:03.156000Z TestFramework (ERROR): 
2025-02-10T21:55:03.156000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_script_unconfirmed_txs_170' to consolidate all logs
2025-02-10T21:55:03.157000Z TestFramework (ERROR): 
2025-02-10T21:55:03.157000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:55:03.157000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:55:03.157000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_utxos.py ======

------- Stdout: -------
2025-02-10T21:55:11.365000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_script_utxos_233
2025-02-10T21:55:12.089000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_utxos.py", line 91, in run_test
    pb.ScriptUtxo(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message ScriptUtxo has no "value" field.
2025-02-10T21:55:12.141000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:55:12.292000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_script_utxos_233
2025-02-10T21:55:12.292000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_script_utxos_233/test_framework.log
2025-02-10T21:55:12.292000Z TestFramework (ERROR): 
2025-02-10T21:55:12.292000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_script_utxos_233' to consolidate all logs
2025-02-10T21:55:12.292000Z TestFramework (ERROR): 
2025-02-10T21:55:12.292000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:55:12.292000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:55:12.292000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_scripthash.py ======

------- Stdout: -------
2025-02-10T21:54:52.287000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_scripthash_121
2025-02-10T21:54:53.153000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_scripthash.py", line 51, in run_test
    self.test_valid_requests()
  File "/work/test/functional/chronik_scripthash.py", line 102, in test_valid_requests
    txs=[genesis_cb_tx()], num_pages=1, num_txs=1
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:54:53.204000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:54:53.355000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_scripthash_121
2025-02-10T21:54:53.355000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_scripthash_121/test_framework.log
2025-02-10T21:54:53.355000Z TestFramework (ERROR): 
2025-02-10T21:54:53.356000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_scripthash_121' to consolidate all logs
2025-02-10T21:54:53.356000Z TestFramework (ERROR): 
2025-02-10T21:54:53.356000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:54:53.356000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:54:53.356000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_alp.py ======

------- Stdout: -------
2025-02-10T21:54:52.331000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_alp_122
2025-02-10T21:54:53.250000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_alp.py", line 100, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:54:53.301000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:54:53.453000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_alp_122
2025-02-10T21:54:53.453000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_alp_122/test_framework.log
2025-02-10T21:54:53.453000Z TestFramework (ERROR): 
2025-02-10T21:54:53.453000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_alp_122' to consolidate all logs
2025-02-10T21:54:53.453000Z TestFramework (ERROR): 
2025-02-10T21:54:53.453000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:54:53.453000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:54:53.453000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_broadcast_txs.py ======

------- Stdout: -------
2025-02-10T21:55:11.502000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_broadcast_txs_235
2025-02-10T21:55:12.217000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_broadcast_txs.py", line 76, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:55:12.269000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:55:12.370000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_broadcast_txs_235
2025-02-10T21:55:12.370000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_broadcast_txs_235/test_framework.log
2025-02-10T21:55:12.371000Z TestFramework (ERROR): 
2025-02-10T21:55:12.371000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_broadcast_txs_235' to consolidate all logs
2025-02-10T21:55:12.371000Z TestFramework (ERROR): 
2025-02-10T21:55:12.371000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:55:12.371000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:55:12.371000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_burn.py ======

------- Stdout: -------
2025-02-10T21:55:11.677000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_burn_236
2025-02-10T21:55:12.404000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_burn.py", line 92, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:55:12.455000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:55:12.556000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_burn_236
2025-02-10T21:55:12.556000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_burn_236/test_framework.log
2025-02-10T21:55:12.556000Z TestFramework (ERROR): 
2025-02-10T21:55:12.557000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_burn_236' to consolidate all logs
2025-02-10T21:55:12.557000Z TestFramework (ERROR): 
2025-02-10T21:55:12.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-02-10T21:55:12.557000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:55:12.557000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_id_group.py ======

------- Stdout: -------
2025-02-10T21:55:02.215000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_id_group_172
2025-02-10T21:55:03.042000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_id_group.py", line 95, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:55:03.094000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:55:03.197000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_id_group_172
2025-02-10T21:55:03.197000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_id_group_172/test_framework.log
2025-02-10T21:55:03.197000Z TestFramework (ERROR): 
2025-02-10T21:55:03.198000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_id_group_172' to consolidate all logs
2025-02-10T21:55:03.198000Z TestFramework (ERROR): 
2025-02-10T21:55:03.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-02-10T21:55:03.198000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:55:03.198000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_script_group.py ======

------- Stdout: -------
2025-02-10T21:55:11.817000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_script_group_238
2025-02-10T21:55:12.770000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_script_group.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:55:12.821000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:55:12.923000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_script_group_238
2025-02-10T21:55:12.923000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_script_group_238/test_framework.log
2025-02-10T21:55:12.923000Z TestFramework (ERROR): 
2025-02-10T21:55:12.923000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_script_group_238' to consolidate all logs
2025-02-10T21:55:12.923000Z TestFramework (ERROR): 
2025-02-10T21:55:12.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-02-10T21:55:12.923000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:55:12.923000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_fungible.py ======

------- Stdout: -------
2025-02-10T21:55:11.970000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_slp_fungible_239
2025-02-10T21:55:12.945000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_fungible.py", line 80, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:55:12.996000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:55:13.098000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_slp_fungible_239
2025-02-10T21:55:13.098000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_slp_fungible_239/test_framework.log
2025-02-10T21:55:13.098000Z TestFramework (ERROR): 
2025-02-10T21:55:13.098000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_slp_fungible_239' to consolidate all logs
2025-02-10T21:55:13.098000Z TestFramework (ERROR): 
2025-02-10T21:55:13.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-02-10T21:55:13.098000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:55:13.098000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py ======

------- Stdout: -------
2025-02-10T21:55:02.230000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_slp_mint_vault_173
2025-02-10T21:55:03.412000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_mint_vault.py", line 119, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:55:03.464000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:55:03.565000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_slp_mint_vault_173
2025-02-10T21:55:03.565000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_slp_mint_vault_173/test_framework.log
2025-02-10T21:55:03.566000Z TestFramework (ERROR): 
2025-02-10T21:55:03.566000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_slp_mint_vault_173' to consolidate all logs
2025-02-10T21:55:03.566000Z TestFramework (ERROR): 
2025-02-10T21:55:03.566000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:55:03.566000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:55:03.566000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_nft1.py ======

------- Stdout: -------
2025-02-10T21:55:11.976000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_slp_nft1_240
2025-02-10T21:55:12.680000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_nft1.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:55:12.732000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:55:12.833000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_slp_nft1_240
2025-02-10T21:55:12.833000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_slp_nft1_240/test_framework.log
2025-02-10T21:55:12.833000Z TestFramework (ERROR): 
2025-02-10T21:55:12.833000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_token_slp_nft1_240' to consolidate all logs
2025-02-10T21:55:12.833000Z TestFramework (ERROR): 
2025-02-10T21:55:12.833000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:55:12.833000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:55:12.833000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_tx.py ======

------- Stdout: -------
2025-02-10T21:55:02.510000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_tx_174
2025-02-10T21:55:03.489000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_tx.py", line 64, in run_test
    assert_equal(chronik.tx(GENESIS_CB_TXID).ok(), genesis_cb_tx())
                                                   ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:55:03.541000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:55:03.693000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_tx_174
2025-02-10T21:55:03.693000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_tx_174/test_framework.log
2025-02-10T21:55:03.693000Z TestFramework (ERROR): 
2025-02-10T21:55:03.693000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_tx_174' to consolidate all logs
2025-02-10T21:55:03.693000Z TestFramework (ERROR): 
2025-02-10T21:55:03.693000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:55:03.693000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:55:03.693000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_ws.py ======

------- Stdout: -------
2025-02-10T21:53:17.746000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_ws_13
2025-02-10T21:53:29.696000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_ws.py", line 120, in run_test
    coinbase_data = coinbase_data_from_block(tip)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/chronik_ws.py", line 116, in coinbase_data_from_block
    return pb.CoinbaseData(
           ^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 535, in init
    copy.add(**val)
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/containers.py", line 276, in add
    new_element = self._message_descriptor._concrete_class(**kwargs)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:53:29.748000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:53:29.849000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_ws_13
2025-02-10T21:53:29.849000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_ws_13/test_framework.log
2025-02-10T21:53:29.849000Z TestFramework (ERROR): 
2025-02-10T21:53:29.849000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik/test/tmp/test_runner_₿₵_🏃_20250210_215251/chronik_ws_13' to consolidate all logs
2025-02-10T21:53:29.850000Z TestFramework (ERROR): 
2025-02-10T21:53:29.850000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:53:29.850000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:53:29.850000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: chronik_block_txs.py
Bitcoin ABC functional tests: chronik_disable_token_index.py
Bitcoin ABC functional tests: chronik_pause.py
Bitcoin ABC functional tests: chronik_script_confirmed_txs.py
Bitcoin ABC functional tests: chronik_script_history.py
Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py
Bitcoin ABC functional tests: chronik_script_utxos.py
Bitcoin ABC functional tests: chronik_scripthash.py
Bitcoin ABC functional tests: chronik_token_alp.py
Bitcoin ABC functional tests: chronik_token_broadcast_txs.py
Bitcoin ABC functional tests: chronik_token_burn.py
Bitcoin ABC functional tests: chronik_token_id_group.py
Bitcoin ABC functional tests: chronik_token_script_group.py
Bitcoin ABC functional tests: chronik_token_slp_fungible.py
Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py
Bitcoin ABC functional tests: chronik_token_slp_nft1.py
Bitcoin ABC functional tests: chronik_tx.py
Bitcoin ABC functional tests: chronik_ws.py

Failed tests logs:

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

------- Stdout: -------
2025-02-10T21:54:56.488000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/abc_p2p_getavaaddr_5
2025-02-10T21:56:01.524000Z TestFramework.utils (ERROR): wait_until() failed. Predicate: ''''
        def test_function():
            if check_connected:
                assert self.is_connected
            return test_function_in()
'''
2025-02-10T21:56:01.524000Z TestFramework (ERROR): Assertion failed
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_getavaaddr.py", line 554, in run_test
    self.getavaaddr_interval_test()
  File "/work/test/functional/abc_p2p_getavaaddr.py", line 192, in getavaaddr_interval_test
    requester.wait_until(requester.addr_received)
  File "/work/test/functional/test_framework/p2p.py", line 582, in wait_until
    wait_until_helper(
  File "/work/test/functional/test_framework/util.py", line 296, in wait_until_helper
    raise AssertionError(
AssertionError: Predicate ''''
        def test_function():
            if check_connected:
                assert self.is_connected
            return test_function_in()
''' not true after 60.0 seconds
2025-02-10T21:56:01.575000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:56:01.876000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/abc_p2p_getavaaddr_5
2025-02-10T21:56:01.876000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/abc_p2p_getavaaddr_5/test_framework.log
2025-02-10T21:56:01.876000Z TestFramework (ERROR): 
2025-02-10T21:56:01.876000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/abc_p2p_getavaaddr_5' to consolidate all logs
2025-02-10T21:56:01.876000Z TestFramework (ERROR): 
2025-02-10T21:56:01.876000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:56:01.877000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:56:01.877000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_block_txs.py ======

------- Stdout: -------
2025-02-10T21:58:17.074000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_block_txs_162
2025-02-10T21:58:20.743000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_block_txs.py", line 92, in run_test
    txs=[genesis_cb_tx()],
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:58:20.796000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:58:21.248000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_block_txs_162
2025-02-10T21:58:21.248000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_block_txs_162/test_framework.log
2025-02-10T21:58:21.248000Z TestFramework (ERROR): 
2025-02-10T21:58:21.248000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_block_txs_162' to consolidate all logs
2025-02-10T21:58:21.248000Z TestFramework (ERROR): 
2025-02-10T21:58:21.248000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:58:21.248000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:58:21.248000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_disable_token_index.py ======

------- Stdout: -------
2025-02-10T21:57:49.689000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_disable_token_index_119
2025-02-10T21:57:53.383000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_disable_token_index.py", line 72, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:57:53.434000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:57:53.886000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_disable_token_index_119
2025-02-10T21:57:53.887000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_disable_token_index_119/test_framework.log
2025-02-10T21:57:53.887000Z TestFramework (ERROR): 
2025-02-10T21:57:53.887000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_disable_token_index_119' to consolidate all logs
2025-02-10T21:57:53.887000Z TestFramework (ERROR): 
2025-02-10T21:57:53.887000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:57:53.887000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:57:53.888000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_pause.py ======

------- Stdout: -------
2025-02-10T21:58:20.866000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_pause_167
2025-02-10T21:58:23.832000Z TestFramework (INFO): Restart to allow pause
2025-02-10T21:58:25.295000Z TestFramework (INFO): Generate coin + mature for testing
2025-02-10T21:58:25.379000Z TestFramework (INFO): Pause Chronik indexing
2025-02-10T21:58:25.379000Z TestFramework (INFO): Send using P2P network
2025-02-10T21:58:25.432000Z TestFramework (INFO): Tx not yet picked up by chronik
2025-02-10T21:58:25.533000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-10T21:58:25.534000Z TestFramework (INFO): Chronik has now indexed the tx
2025-02-10T21:58:25.534000Z TestFramework (INFO): Pause Chronik indexing for block processing
2025-02-10T21:58:25.534000Z TestFramework (INFO): Create block with conflicting tx
2025-02-10T21:58:25.638000Z TestFramework (INFO): Block not indexed yet
2025-02-10T21:58:25.739000Z TestFramework (INFO): Chronik still believes the old tx exists
2025-02-10T21:58:25.739000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-10T21:58:25.740000Z TestFramework (INFO): Block now indexed and tx conflict resolved
2025-02-10T21:58:25.741000Z TestFramework (INFO): Pause Chronik for reorg
2025-02-10T21:58:25.742000Z TestFramework (INFO): Reorg last block by mining two blocks
2025-02-10T21:58:25.843000Z TestFramework (INFO): Reorg returns tx to mempool
2025-02-10T21:58:25.844000Z TestFramework (INFO): Chronik still thinks blockA exists
2025-02-10T21:58:25.946000Z TestFramework (INFO): Add block that mines the tx
2025-02-10T21:58:26.048000Z TestFramework (INFO): Resume indexing and sync Chronik
2025-02-10T21:58:26.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/chronik_pause.py", line 160, in run_test
    assert_equal(tx_proto.inputs[0].value, coinvalue)
                 ^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'TxInput' object has no attribute 'value'
2025-02-10T21:58:26.101000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:58:26.453000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_pause_167
2025-02-10T21:58:26.453000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_pause_167/test_framework.log
2025-02-10T21:58:26.453000Z TestFramework (ERROR): 
2025-02-10T21:58:26.453000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_pause_167' to consolidate all logs
2025-02-10T21:58:26.453000Z TestFramework (ERROR): 
2025-02-10T21:58:26.453000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:58:26.453000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:58:26.453000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_confirmed_txs.py ======

------- Stdout: -------
2025-02-10T21:56:40.198000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_script_confirmed_txs_66
2025-02-10T21:56:43.544000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_confirmed_txs.py", line 124, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:56:43.595000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:56:44.046000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_script_confirmed_txs_66
2025-02-10T21:56:44.047000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_script_confirmed_txs_66/test_framework.log
2025-02-10T21:56:44.047000Z TestFramework (ERROR): 
2025-02-10T21:56:44.047000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_script_confirmed_txs_66' to consolidate all logs
2025-02-10T21:56:44.047000Z TestFramework (ERROR): 
2025-02-10T21:56:44.047000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:56:44.047000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:56:44.047000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_history.py ======

------- Stdout: -------
2025-02-10T21:56:54.474000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_script_history_75
2025-02-10T21:56:57.910000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_history.py", line 127, in run_test
    pb.TxHistoryPage(txs=[genesis_cb_tx()], num_pages=1, num_txs=1),
                          ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:56:57.961000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:56:58.413000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_script_history_75
2025-02-10T21:56:58.413000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_script_history_75/test_framework.log
2025-02-10T21:56:58.413000Z TestFramework (ERROR): 
2025-02-10T21:56:58.413000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_script_history_75' to consolidate all logs
2025-02-10T21:56:58.413000Z TestFramework (ERROR): 
2025-02-10T21:56:58.413000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:56:58.413000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:56:58.413000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py ======

------- Stdout: -------
2025-02-10T21:58:21.452000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_script_unconfirmed_txs_170
2025-02-10T21:58:24.616000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_unconfirmed_txs.py", line 151, in run_test
    pb.TxInput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxInput has no "value" field.
2025-02-10T21:58:24.668000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:58:25.071000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_script_unconfirmed_txs_170
2025-02-10T21:58:25.071000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_script_unconfirmed_txs_170/test_framework.log
2025-02-10T21:58:25.071000Z TestFramework (ERROR): 
2025-02-10T21:58:25.072000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_script_unconfirmed_txs_170' to consolidate all logs
2025-02-10T21:58:25.072000Z TestFramework (ERROR): 
2025-02-10T21:58:25.072000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:58:25.072000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:58:25.072000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_script_utxos.py ======

------- Stdout: -------
2025-02-10T21:58:43.791000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_script_utxos_233
2025-02-10T21:58:46.879000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_script_utxos.py", line 91, in run_test
    pb.ScriptUtxo(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message ScriptUtxo has no "value" field.
2025-02-10T21:58:46.931000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:58:47.383000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_script_utxos_233
2025-02-10T21:58:47.384000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_script_utxos_233/test_framework.log
2025-02-10T21:58:47.384000Z TestFramework (ERROR): 
2025-02-10T21:58:47.384000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_script_utxos_233' to consolidate all logs
2025-02-10T21:58:47.384000Z TestFramework (ERROR): 
2025-02-10T21:58:47.385000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:58:47.385000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:58:47.386000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_scripthash.py ======

------- Stdout: -------
2025-02-10T21:57:52.409000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_scripthash_121
2025-02-10T21:57:56.120000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_scripthash.py", line 51, in run_test
    self.test_valid_requests()
  File "/work/test/functional/chronik_scripthash.py", line 102, in test_valid_requests
    txs=[genesis_cb_tx()], num_pages=1, num_txs=1
         ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:57:56.171000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:57:56.523000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_scripthash_121
2025-02-10T21:57:56.523000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_scripthash_121/test_framework.log
2025-02-10T21:57:56.523000Z TestFramework (ERROR): 
2025-02-10T21:57:56.523000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_scripthash_121' to consolidate all logs
2025-02-10T21:57:56.523000Z TestFramework (ERROR): 
2025-02-10T21:57:56.523000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:57:56.523000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:57:56.523000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_alp.py ======

------- Stdout: -------
2025-02-10T21:57:52.446000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_alp_122
2025-02-10T21:57:55.931000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_alp.py", line 100, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:57:55.982000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:57:56.383000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_alp_122
2025-02-10T21:57:56.383000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_alp_122/test_framework.log
2025-02-10T21:57:56.383000Z TestFramework (ERROR): 
2025-02-10T21:57:56.383000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_alp_122' to consolidate all logs
2025-02-10T21:57:56.384000Z TestFramework (ERROR): 
2025-02-10T21:57:56.384000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:57:56.384000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:57:56.384000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_broadcast_txs.py ======

------- Stdout: -------
2025-02-10T21:58:44.617000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_broadcast_txs_235
2025-02-10T21:58:47.640000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_broadcast_txs.py", line 76, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:58:47.691000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:58:48.043000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_broadcast_txs_235
2025-02-10T21:58:48.043000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_broadcast_txs_235/test_framework.log
2025-02-10T21:58:48.043000Z TestFramework (ERROR): 
2025-02-10T21:58:48.043000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_broadcast_txs_235' to consolidate all logs
2025-02-10T21:58:48.043000Z TestFramework (ERROR): 
2025-02-10T21:58:48.043000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:58:48.043000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:58:48.043000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_burn.py ======

------- Stdout: -------
2025-02-10T21:58:44.933000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_burn_236
2025-02-10T21:58:47.954000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_burn.py", line 92, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:58:48.006000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:58:48.407000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_burn_236
2025-02-10T21:58:48.407000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_burn_236/test_framework.log
2025-02-10T21:58:48.407000Z TestFramework (ERROR): 
2025-02-10T21:58:48.407000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_burn_236' to consolidate all logs
2025-02-10T21:58:48.407000Z TestFramework (ERROR): 
2025-02-10T21:58:48.407000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:58:48.407000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:58:48.407000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_id_group.py ======

------- Stdout: -------
2025-02-10T21:58:22.857000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_id_group_172
2025-02-10T21:58:26.084000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_id_group.py", line 95, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:58:26.135000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:58:26.537000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_id_group_172
2025-02-10T21:58:26.537000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_id_group_172/test_framework.log
2025-02-10T21:58:26.537000Z TestFramework (ERROR): 
2025-02-10T21:58:26.537000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_id_group_172' to consolidate all logs
2025-02-10T21:58:26.537000Z TestFramework (ERROR): 
2025-02-10T21:58:26.537000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:58:26.537000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:58:26.537000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_script_group.py ======

------- Stdout: -------
2025-02-10T21:58:46.028000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_script_group_238
2025-02-10T21:58:49.121000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_script_group.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:58:49.172000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:58:49.574000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_script_group_238
2025-02-10T21:58:49.574000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_script_group_238/test_framework.log
2025-02-10T21:58:49.574000Z TestFramework (ERROR): 
2025-02-10T21:58:49.574000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_script_group_238' to consolidate all logs
2025-02-10T21:58:49.574000Z TestFramework (ERROR): 
2025-02-10T21:58:49.574000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:58:49.574000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:58:49.575000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_fungible.py ======

------- Stdout: -------
2025-02-10T21:58:46.074000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_slp_fungible_239
2025-02-10T21:58:49.184000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_fungible.py", line 80, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:58:49.236000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:58:49.690000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_slp_fungible_239
2025-02-10T21:58:49.690000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_slp_fungible_239/test_framework.log
2025-02-10T21:58:49.690000Z TestFramework (ERROR): 
2025-02-10T21:58:49.690000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_slp_fungible_239' to consolidate all logs
2025-02-10T21:58:49.690000Z TestFramework (ERROR): 
2025-02-10T21:58:49.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-02-10T21:58:49.690000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:58:49.690000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py ======

------- Stdout: -------
2025-02-10T21:58:22.992000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_slp_mint_vault_173
2025-02-10T21:58:26.142000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_mint_vault.py", line 119, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:58:26.193000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:58:26.597000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_slp_mint_vault_173
2025-02-10T21:58:26.597000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_slp_mint_vault_173/test_framework.log
2025-02-10T21:58:26.597000Z TestFramework (ERROR): 
2025-02-10T21:58:26.597000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_slp_mint_vault_173' to consolidate all logs
2025-02-10T21:58:26.597000Z TestFramework (ERROR): 
2025-02-10T21:58:26.597000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:58:26.598000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:58:26.598000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_token_slp_nft1.py ======

------- Stdout: -------
2025-02-10T21:58:46.404000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_slp_nft1_240
2025-02-10T21:58:49.462000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'actual_burn_amount'

During handling of the above exception, another exception occurred:

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/chronik_token_slp_nft1.py", line 86, in run_test
    pb.TokenEntry(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TokenEntry has no "actual_burn_amount" field.
2025-02-10T21:58:49.514000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:58:49.966000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_slp_nft1_240
2025-02-10T21:58:49.966000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_slp_nft1_240/test_framework.log
2025-02-10T21:58:49.966000Z TestFramework (ERROR): 
2025-02-10T21:58:49.966000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_token_slp_nft1_240' to consolidate all logs
2025-02-10T21:58:49.966000Z TestFramework (ERROR): 
2025-02-10T21:58:49.966000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:58:49.966000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:58:49.966000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_tx.py ======

------- Stdout: -------
2025-02-10T21:58:23.902000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_tx_174
2025-02-10T21:58:27.009000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_tx.py", line 64, in run_test
    assert_equal(chronik.tx(GENESIS_CB_TXID).ok(), genesis_cb_tx())
                                                   ^^^^^^^^^^^^^^^
  File "/work/test/functional/test_framework/chronik/test_data.py", line 27, in genesis_cb_tx
    pb.TxOutput(
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:58:27.060000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:58:27.511000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_tx_174
2025-02-10T21:58:27.512000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_tx_174/test_framework.log
2025-02-10T21:58:27.512000Z TestFramework (ERROR): 
2025-02-10T21:58:27.512000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_tx_174' to consolidate all logs
2025-02-10T21:58:27.512000Z TestFramework (ERROR): 
2025-02-10T21:58:27.512000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:58:27.512000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:58:27.512000Z TestFramework (ERROR):
====== Bitcoin ABC functional tests: chronik_ws.py ======

------- Stdout: -------
2025-02-10T21:55:25.204000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_ws_13
2025-02-10T21:55:36.378000Z TestFramework (ERROR): Unexpected exception caught during testing
Traceback (most recent call last):
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 577, in _GetFieldByName
    return message_descriptor.fields_by_name[field_name]
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
KeyError: 'value'

During handling of the above exception, another exception occurred:

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/chronik_ws.py", line 120, in run_test
    coinbase_data = coinbase_data_from_block(tip)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/work/test/functional/chronik_ws.py", line 116, in coinbase_data_from_block
    return pb.CoinbaseData(
           ^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 535, in init
    copy.add(**val)
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/containers.py", line 276, in add
    new_element = self._message_descriptor._concrete_class(**kwargs)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 516, in init
    field = _GetFieldByName(message_descriptor, field_name)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/local/lib/python3.11/dist-packages/google/protobuf/internal/python_message.py", line 579, in _GetFieldByName
    raise ValueError('Protocol message %s has no "%s" field.' %
ValueError: Protocol message TxOutput has no "value" field.
2025-02-10T21:55:36.429000Z TestFramework (INFO): Stopping nodes
2025-02-10T21:55:36.681000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_ws_13
2025-02-10T21:55:36.681000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_ws_13/test_framework.log
2025-02-10T21:55:36.681000Z TestFramework (ERROR): 
2025-02-10T21:55:36.681000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_215455/chronik_ws_13' to consolidate all logs
2025-02-10T21:55:36.681000Z TestFramework (ERROR): 
2025-02-10T21:55:36.681000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T21:55:36.681000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T21:55:36.681000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: abc_p2p_getavaaddr.py
Bitcoin ABC functional tests: chronik_block_txs.py
Bitcoin ABC functional tests: chronik_disable_token_index.py
Bitcoin ABC functional tests: chronik_pause.py
Bitcoin ABC functional tests: chronik_script_confirmed_txs.py
Bitcoin ABC functional tests: chronik_script_history.py
Bitcoin ABC functional tests: chronik_script_unconfirmed_txs.py
Bitcoin ABC functional tests: chronik_script_utxos.py
Bitcoin ABC functional tests: chronik_scripthash.py
Bitcoin ABC functional tests: chronik_token_alp.py
Bitcoin ABC functional tests: chronik_token_broadcast_txs.py
Bitcoin ABC functional tests: chronik_token_burn.py
Bitcoin ABC functional tests: chronik_token_id_group.py
Bitcoin ABC functional tests: chronik_token_script_group.py
Bitcoin ABC functional tests: chronik_token_slp_fungible.py
Bitcoin ABC functional tests: chronik_token_slp_mint_vault.py
Bitcoin ABC functional tests: chronik_token_slp_nft1.py
Bitcoin ABC functional tests: chronik_tx.py
Bitcoin ABC functional tests: chronik_ws.py

Tail of the build log:

Run `npm audit` for details.

> ecash-lib@3.0.0 build
> tsc && tsc -p ./tsconfig.build.json && cp -r ./src/ffi ./dist

/work/modules/ecash-agora /work/abc-ci-builds/cashtab-tests

added 364 packages, and audited 367 packages in 1s

60 packages are looking for funding
  run `npm fund` for details

2 vulnerabilities (1 moderate, 1 high)

To address all issues, run:
  npm audit fix

Run `npm audit` for details.

> ecash-agora@2.0.0 build
> tsc && tsc -p ./tsconfig.build.json

/work/cashtab /work/abc-ci-builds/cashtab-tests
npm warn deprecated @humanwhocodes/config-array@0.11.14: Use @eslint/config-array instead
npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead
npm warn deprecated eslint@8.56.0: This version is no longer supported. Please see https://eslint.org/version-support for other options.

added 1494 packages, and audited 3315 packages in 24s

320 packages are looking for funding
  run `npm fund` for details

8 vulnerabilities (4 moderate, 4 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

> cashtab@3.13.4 build
> node scripts/build.js

Creating an optimized production build...
Failed to compile.

TS2322: Type 'string' is not assignable to type 'bigint'.
    38 |     tokenType: DUMMY_TOKEN_TYPE_ALP,
    39 |     tokenId: MOCK_TOKEN_ID,
  > 40 |     atoms: '1000',
       |     ^^^^^
    41 |     isMintBaton: false,
    42 | };
    43 | const DUMMY_UTXO: CashtabUtxo = {


Build cashtab-tests failed with exit code 1
bytesofman edited the test plan for this revision. (Show Details)

Failed tests logs:

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

------- Stdout: -------
2025-02-10T23:46:48.903000Z TestFramework (INFO): Initializing test directory /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_234311/chronik_plugins_169
2025-02-10T23:46:55.056000Z TestFramework (ERROR): Assertion failed
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/chronik_plugins.py", line 207, in run_test
    assert_equal(list(plugin.unconfirmed_txs(b"a").ok().txs), txs)
  File "/work/test/functional/test_framework/util.py", line 56, in assert_equal
    raise AssertionError(
AssertionError: not([txid: "\210\027\303\333\034\3126\365T\234\351\010\345?\231\266f\037N\320\301lk\367~\353\335\306\277u\t\336"
version: 1
inputs {
  prev_out {
    txid: "\023F\017\3045\022\037\306\334,\006\304\032\247_X\246A\241\313\236S\367~D\337^\245\3745\244?"
  }
  input_script: "\001Q"
  output_script: "\251\024\332\027E\351\265I\275\013\372\032V\231q\307~\2720\315ZK\207"
  sats: 5000000000
}
outputs {
  output_script: "j\004TEST\004argo\004alef\003abc"
}
outputs {
  sats: 1000
  output_script: "\251\024\332\027E\351\265I\275\013\372\032V\231q\307~\2720\315ZK\207"
  plugins {
    key: "my_plugin"
    value {
      groups: "a"
      data: "argo"
    }
  }
}
outputs {
  sats: 1000
  output_script: "\251\024\332\027E\351\265I\275\013\372\032V\231q\307~\2720\315ZK\207"
  plugins {
    key: "my_plugin"
    value {
      groups: "a"
      data: "alef"
    }
  }
}
outputs {
  sats: 4999990000
  output_script: "\251\024\332\027E\351\265I\275\013\372\032V\231q\307~\2720\315ZK\207"
  spent_by {
    txid: "~\3372\177\005d\027s0\032\233\225\242\227\273\327\272\013\266b\353\357\221\372!\3413[\305uM,"
  }
  plugins {
    key: "my_plugin"
    value {
      groups: "a"
      data: "abc"
    }
  }
}
time_first_seen: 1739231214
size: 178
, txid: "~\3372\177\005d\027s0\032\233\225\242\227\273\327\272\013\266b\353\357\221\372!\3413[\305uM,"
version: 1
inputs {
  prev_out {
    txid: "\210\027\303\333\034\3126\365T\234\351\010\345?\231\266f\037N\320\301lk\367~\353\335\306\277u\t\336"
    out_idx: 3
  }
  input_script: "\001Q"
  output_script: "\251\024\332\027E\351\265I\275\013\372\032V\231q\307~\2720\315ZK\207"
  sats: 4999990000
  plugins {
    key: "my_plugin"
    value {
      groups: "a"
      data: "abc"
    }
  }
}
outputs {
  output_script: "j\004TEST\004blub\004borg\005bjork"
}
outputs {
  sats: 1000
  output_script: "\251\024\332\027E\351\265I\275\013\372\032V\231q\307~\2720\315ZK\207"
  plugins {
    key: "my_plugin"
    value {
      groups: "b"
      data: "blub"
      data: "abc"
    }
  }
}
outputs {
  sats: 1000
  output_script: "\251\024\332\027E\351\265I\275\013\372\032V\231q\307~\2720\315ZK\207"
  plugins {
    key: "my_plugin"
    value {
      groups: "b"
      data: "borg"
    }
  }
}
outputs {
  sats: 4999980000
  output_script: "\251\024\332\027E\351\265I\275\013\372\032V\231q\307~\2720\315ZK\207"
  plugins {
    key: "my_plugin"
    value {
      groups: "b"
      data: "bjork"
    }
  }
}
time_first_seen: 1739231215
size: 180
] == [txid: "~\3372\177\005d\027s0\032\233\225\242\227\273\327\272\013\266b\353\357\221\372!\3413[\305uM,"
version: 1
inputs {
  prev_out {
    txid: "\210\027\303\333\034\3126\365T\234\351\010\345?\231\266f\037N\320\301lk\367~\353\335\306\277u\t\336"
    out_idx: 3
  }
  input_script: "\001Q"
  output_script: "\251\024\332\027E\351\265I\275\013\372\032V\231q\307~\2720\315ZK\207"
  sats: 4999990000
  plugins {
    key: "my_plugin"
    value {
      groups: "a"
      data: "abc"
    }
  }
}
outputs {
  output_script: "j\004TEST\004blub\004borg\005bjork"
}
outputs {
  sats: 1000
  output_script: "\251\024\332\027E\351\265I\275\013\372\032V\231q\307~\2720\315ZK\207"
  plugins {
    key: "my_plugin"
    value {
      groups: "b"
      data: "blub"
      data: "abc"
    }
  }
}
outputs {
  sats: 1000
  output_script: "\251\024\332\027E\351\265I\275\013\372\032V\231q\307~\2720\315ZK\207"
  plugins {
    key: "my_plugin"
    value {
      groups: "b"
      data: "borg"
    }
  }
}
outputs {
  sats: 4999980000
  output_script: "\251\024\332\027E\351\265I\275\013\372\032V\231q\307~\2720\315ZK\207"
  plugins {
    key: "my_plugin"
    value {
      groups: "b"
      data: "bjork"
    }
  }
}
time_first_seen: 1739231215
size: 180
, txid: "\210\027\303\333\034\3126\365T\234\351\010\345?\231\266f\037N\320\301lk\367~\353\335\306\277u\t\336"
version: 1
inputs {
  prev_out {
    txid: "\023F\017\3045\022\037\306\334,\006\304\032\247_X\246A\241\313\236S\367~D\337^\245\3745\244?"
  }
  input_script: "\001Q"
  output_script: "\251\024\332\027E\351\265I\275\013\372\032V\231q\307~\2720\315ZK\207"
  sats: 5000000000
}
outputs {
  output_script: "j\004TEST\004argo\004alef\003abc"
}
outputs {
  sats: 1000
  output_script: "\251\024\332\027E\351\265I\275\013\372\032V\231q\307~\2720\315ZK\207"
  plugins {
    key: "my_plugin"
    value {
      groups: "a"
      data: "argo"
    }
  }
}
outputs {
  sats: 1000
  output_script: "\251\024\332\027E\351\265I\275\013\372\032V\231q\307~\2720\315ZK\207"
  plugins {
    key: "my_plugin"
    value {
      groups: "a"
      data: "alef"
    }
  }
}
outputs {
  sats: 4999990000
  output_script: "\251\024\332\027E\351\265I\275\013\372\032V\231q\307~\2720\315ZK\207"
  spent_by {
    txid: "~\3372\177\005d\027s0\032\233\225\242\227\273\327\272\013\266b\353\357\221\372!\3413[\305uM,"
  }
  plugins {
    key: "my_plugin"
    value {
      groups: "a"
      data: "abc"
    }
  }
}
time_first_seen: 1739231214
size: 178
])
2025-02-10T23:46:55.107000Z TestFramework (INFO): Stopping nodes
2025-02-10T23:46:55.459000Z TestFramework (WARNING): Not cleaning up dir /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_234311/chronik_plugins_169
2025-02-10T23:46:55.459000Z TestFramework (ERROR): Test failed. Test logging available at /work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_234311/chronik_plugins_169/test_framework.log
2025-02-10T23:46:55.459000Z TestFramework (ERROR): 
2025-02-10T23:46:55.459000Z TestFramework (ERROR): Hint: Call /work/test/functional/combine_logs.py '/work/abc-ci-builds/build-chronik-plugins/test/tmp/test_runner_₿₵_🏃_20250210_234311/chronik_plugins_169' to consolidate all logs
2025-02-10T23:46:55.459000Z TestFramework (ERROR): 
2025-02-10T23:46:55.459000Z TestFramework (ERROR): If this failure happened unexpectedly or intermittently, please file a bug and provide a link or upload of the combined log.
2025-02-10T23:46:55.459000Z TestFramework (ERROR): https://github.com/Bitcoin-ABC/bitcoin-abc/issues
2025-02-10T23:46:55.459000Z TestFramework (ERROR):

Each failure log is accessible here:
Bitcoin ABC functional tests: chronik_plugins.py

cashtab migration and version bump

bytesofman retitled this revision from [chronik, chronik-client, and deps] Improve types to [chronik, chronik-client, ecash-agora, ecash-lib, cashtab, ecash-herald, token-server, faucet, mock-chronik-client] Improve names of keys and params that expect satoshis and atoms (aka base tokens).Tue, Feb 11, 04:26
bytesofman edited the summary of this revision. (Show Details)
bytesofman edited the summary of this revision. (Show Details)
tobias_ruck added a subscriber: tobias_ruck.
tobias_ruck added inline comments.
apps/ecash-herald/test/mocks/block.ts
1 ↗(On Diff #52603)

porque no eso?

chronik/chronik-db/src/mem/tokens.rs
498 ↗(On Diff #52603)

let's at least pretend the comment is useful :P

chronik/chronik-plugin-impl/src/etoken.py
63 ↗(On Diff #52603)

Unfortunately have to do these separately, as they would break existing plugins. Another alternative would be to set both for now (and mark them as deprecated), like this, and make sure to set both in the Rust impl. Then we can have a smooth transition of power

66 ↗(On Diff #52603)

dito

90 ↗(On Diff #52603)

dito

chronik/chronik-plugin-impl/src/tx.py
33 ↗(On Diff #52603)

dito

chronik/chronik-proto/proto/chronik.proto
303 ↗(On Diff #52603)

split this line up (too long)

modules/ecash-agora/src/partial.approx.test.ts
31 ↗(On Diff #52603)

this diff file feels good man

grafik.png (609×659 px, 114 KB)

modules/ecash-agora/src/partial.ts
1165 ↗(On Diff #52603)

there's probably other such cases, make sure to double-check for [a-z]trunc

1257 ↗(On Diff #52603)

non licet

1343 ↗(On Diff #52603)

non licet

This revision now requires changes to proceed.Tue, Feb 11, 11:31
bytesofman added inline comments.
chronik/chronik-plugin-impl/src/etoken.py
63 ↗(On Diff #52603)

As long as we are able to keep agora-indexed chronik-client servers up and running through an upgrade, I think it's worth dealing with this complication. Should be one-off and, like the rest of this diff, window of opportunity to get this kind of (large) change in won't be open forever.

For now, the impacted operators are limited and known.

modules/ecash-agora/src/partial.ts
1165 ↗(On Diff #52603)

also updated for

maxtruncAtoms -> maxTruncAtoms
acceptedtruncAtoms -> acceptedTruncAtoms
scaledtruncAtoms8LeWriter -> scaledTruncAtoms8LeWriter
scaledtruncAtoms -> scaledTruncAtoms (and other vars that start with scaledtruncAtoms updated similarly)

bytesofman marked 2 inline comments as done.

ecash-herald copyright update, ecash-agora camelCase patches, rust proto tighten comment line length

Tail of the build log:

  ecash_lib_wasm_bg_browser.js |       0 |      100 |     100 |       0 | 1                         
  ecash_lib_wasm_browser.js    |       0 |        0 |       0 |       0 | 3-567                     
  ecash_lib_wasm_nodejs.js     |       0 |        0 |       0 |       0 | 1-497                     
 ecash-lib/src                 |   30.61 |    25.63 |   29.85 |   51.78 |                           
  consts.ts                    |       0 |      100 |     100 |       0 | 6-8                       
  ecc.ts                       |   22.85 |    83.33 |   14.81 |   44.44 | 32-52,70,83-93            
  hash.ts                      |   41.46 |    83.33 |   26.66 |   80.95 | 26,35,38,41               
  hdwallet.ts                  |       0 |        0 |       0 |       0 | 12-175                    
  hmac.ts                      |       0 |        0 |       0 |       0 | 16-73                     
  index.ts                     |       0 |        0 |       0 |       0 |                           
  indexBrowser.ts              |       0 |        0 |       0 |       0 |                           
  indexNodeJs.ts               |       0 |        0 |       0 |       0 |                           
  initBrowser.ts               |       0 |      100 |       0 |       0 | 11-17                     
  initNodeJs.ts                |   54.54 |      100 |     100 |      80 | 10                        
  mnemonic.ts                  |       0 |        0 |       0 |       0 | 9-144                     
  op.ts                        |   20.13 |    23.33 |   36.36 |   39.47 | ...07,109,117-122,133-161 
  opcode.ts                    |    50.2 |    83.33 |     100 |     100 | 1                         
  pbkdf2.ts                    |       0 |      100 |       0 |       0 | 17-51                     
  script.ts                    |   28.44 |    20.58 |   29.03 |   50.87 | ...33-144,150,160,182-193 
  sigHashType.ts               |      40 |       25 |   46.15 |   78.94 | 26-38                     
  tx.ts                        |   47.25 |    45.23 |   47.61 |   87.23 | 110,114,123-125,144       
  txBuilder.ts                 |   40.74 |    33.92 |   54.54 |   80.43 | ...62,181-186,191,261-265 
  unsignedTx.ts                |   25.27 |       16 |   30.76 |   46.15 | ...12,320,326-329,345,357 
 ecash-lib/src/address         |   11.35 |    15.15 |    5.12 |   22.41 |                           
  address.ts                   |   10.95 |    11.36 |    3.22 |   21.05 | ...39-240,255-256,266-344 
  legacyaddr.ts                |   12.04 |    22.72 |    12.5 |      25 | ...9,23-38,70-111,124-128 
 ecash-lib/src/ffi             |   17.64 |    15.29 |    8.91 |   17.91 |                           
  ecash_lib_wasm_bg_browser.js |       0 |      100 |     100 |       0 | 1                         
  ecash_lib_wasm_browser.js    |       0 |        0 |       0 |       0 | 3-567                     
  ecash_lib_wasm_nodejs.js     |   37.06 |    46.42 |   19.14 |   37.35 | ...05,412-477,483-484,488 
 ecash-lib/src/io              |   30.79 |    41.17 |   39.06 |   59.55 |                           
  bytes.ts                     |    8.19 |       60 |   11.76 |   16.12 | 12,23-74                  
  hex.ts                       |   41.55 |       50 |   44.44 |   82.35 | 41-45,50,58               
  int.ts                       |       0 |        0 |       0 |       0 |                           
  str.ts                       |   46.15 |    83.33 |      40 |   85.71 | 15                        
  varsize.ts                   |   16.32 |    21.05 |      40 |      32 | 14-24,40-47               
  writer.ts                    |       0 |        0 |       0 |       0 |                           
  writerbytes.ts               |   42.62 |    40.62 |   53.33 |   83.87 | 34,44,54,64,80            
  writerlength.ts              |   53.33 |    83.33 |   53.84 |     100 | 1                         
 ecash-lib/src/test            |   46.05 |    37.68 |      50 |   89.04 |                           
  testRunner.ts                |   46.05 |    37.68 |      50 |   89.04 | 66-68,81-82,105,114,157   
 ecash-lib/src/token           |   45.48 |    43.96 |      50 |   87.07 |                           
  alp.ts                       |    42.5 |    53.12 |   43.47 |   82.92 | 110-123,142               
  common.ts                    |   54.54 |    83.33 |     100 |     100 | 1                         
  empp.ts                      |   52.17 |       60 |   57.14 |   91.66 | 12                        
  slp.ts                       |   46.97 |    33.82 |      52 |   89.74 | ...61,167,175,178,197,202 
-------------------------------|---------|----------|---------|---------|---------------------------

##teamcity[blockOpened name='Code Coverage Summary']
##teamcity[buildStatisticValue key='CodeCoverageAbsBCovered' value='865']
##teamcity[buildStatisticValue key='CodeCoverageAbsBTotal' value='3499']
##teamcity[buildStatisticValue key='CodeCoverageAbsRCovered' value='263']
##teamcity[buildStatisticValue key='CodeCoverageAbsRTotal' value='995']
##teamcity[buildStatisticValue key='CodeCoverageAbsMCovered' value='144']
##teamcity[buildStatisticValue key='CodeCoverageAbsMTotal' value='606']
##teamcity[buildStatisticValue key='CodeCoverageAbsLCovered' value='844']
##teamcity[buildStatisticValue key='CodeCoverageAbsLTotal' value='2388']
##teamcity[blockClosed name='Code Coverage Summary']
mv: cannot stat 'test_results/ecash-lib-integration-tests-junit.xml': No such file or directory
Build ecash-lib-integration-tests failed with exit code 1