You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's actually more tricky to consider this as a FP, and it depends on the other functions. For example if you have doSomethingElse function that does not have the nonReentrant modifier, an attacker might be able to exploit the reentrancy by re-entering into doSomethingElse. For example:
A Reentrancy vulnerability is reported by Slither in case an external nonReentrant function calls an internal function in the same contract.
For example:
Here as the
doSomething
is an internal function and only called inside anonReentrant
function, this should not be an issue.The text was updated successfully, but these errors were encountered: