Skip to content
Snippets Groups Projects
Commit 01cb9c53 authored by vincent's avatar vincent
Browse files

BTC Symbolic interpreter

	* Stop raising errors when OP_ROLL is used
parent 0027abed
No related branches found
No related tags found
No related merge requests found
......@@ -87,13 +87,8 @@ def __find_unlocking_script_timed(hex_script, return_dict, verbose):
return_dict["model"] = {}
except UnimplementedInstructionError as e:
if e.tag in [InstructionTag.RESERVED, InstructionTag.DISABLED]:
return_dict["satisfiability"] = Satifiability.UNSPENDABLE
return_dict["model"] = {}
else:
return_dict["satisfiability"] = Satifiability.UNKNOWN
return_dict["model"] = {}
raise e
return_dict["satisfiability"] = Satifiability.UNSPENDABLE
return_dict["model"] = {}
except Exception as e:
raise e
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment