Instruction.is_try()
Returns True if the instruction is Try instruction in a try-catch block, otherwise returns False.
Query Example
from glider import *
def query():
return Instructions().exec(20000).filter(lambda x: x.is_try())Output Example

Last updated