We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aa123d commit 12edcfeCopy full SHA for 12edcfe
cardano_node_tests/tests/tests_plutus_v2/test_mint_build.py
@@ -244,6 +244,12 @@ def test_minting_ref_one_token(
244
expected_costs=[script_expected_fee["cost"]],
245
)
246
247
+ ref_size_data = cluster.g_query.get_ref_script_size(utxo=reference_utxo)
248
+
249
+ ref_size = ref_size_data.get("refScriptSize") or ref_size_data.get("refInputScriptSize")
250
+ assert ref_size is not None, f"Missing refScriptSize field in output: {ref_size_data}"
251
+ assert ref_size >= 0, f"refScriptSize must be non-negative, got {ref_size}"
252
253
@allure.link(helpers.get_vcs_link())
254
@common.PARAM_PLUTUS2ONWARDS_VERSION
255
@pytest.mark.smoke
0 commit comments