Add staticcall to LowLevelCall (close #152)

pull/162/head
Josselin 6 years ago
parent 4b55be79b2
commit 76c07772b4
  1. 5
      slither/slithir/convert.py

@ -210,7 +210,10 @@ def convert_to_low_level(ir):
else:
new_ir.lvalue.set_type(call.return_type)
return new_ir
elif ir.function_name in ['call', 'delegatecall', 'callcode']:
elif ir.function_name in ['call',
'delegatecall',
'callcode',
'staticcall']:
new_ir = LowLevelCall(ir.destination,
ir.function_name,
ir.nbr_arguments,

Loading…
Cancel
Save