Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 652 Bytes

OZ ReentrancyGuard.md

File metadata and controls

21 lines (20 loc) · 652 Bytes

OpenZeppelin ReentrancyGuard: prevents reentrant calls to a function.

Inheriting from ReentrancyGuard will make the nonReentrant modifier available, which can be applied to functions to make sure there are no nested (reentrant) calls to them.


Slide Screenshot

157.jpg


Slide Text

  • Reentrancy Vulnerabilities
    • Unique & Dangerous
  • External & Untrusted
  • Calls -> Reenter & Exploit
  • Modifier: nonReentrant
  • Prevents: Reentrancy
    • Best Practice

References


Tags