We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e2ce4a commit 09c967cCopy full SHA for 09c967c
cardano_node_tests/tests/test_scripts.py
@@ -2289,7 +2289,13 @@ def test_script_reference_utxo(
2289
and reference_utxo.reference_script["script"]["type"] == "SimpleScriptV2"
2290
):
2291
pytest.xfail("Reported 'SimpleScriptV2', see node issue #4261")
2292
- assert reference_utxo.reference_script["script"]["type"] == script_type_str
+
2293
+ # In node >= 1.36.0 it is not necessary to distinguish between MultiSig and Timelock
2294
+ # scripts, both now report as "SimpleScript".
2295
+ assert reference_utxo.reference_script["script"]["type"] in (
2296
+ script_type_str,
2297
+ "SimpleScript",
2298
+ )
2299
2300
@allure.link(helpers.get_vcs_link())
2301
@common.PARAM_USE_BUILD_CMD
0 commit comments