Fix reentrancy detector

pull/314/head
Josselin 5 years ago
parent c417c04bf0
commit e2ed64c97b
  1. 3
      slither/slithir/operations/send.py
  2. 2
      slither/slithir/operations/transfer.py

@ -17,6 +17,9 @@ class Send(Call, OperationWithLValue):
self._call_value = value
def can_send_eth(self):
return True
@property
def call_value(self):
return self._call_value

@ -11,6 +11,8 @@ class Transfer(Call):
self._call_value = value
def can_send_eth(self):
return True
@property
def call_value(self):

Loading…
Cancel
Save