blockchains-security-toolkit/Smart-Contract-Security/reentrancy-notes.md
2022-06-21 17:08:54 -07:00

567 B

Reentrancy


  • When a contract calls an external function, that external function may itself call the calling function.
  • To prevent this attack, a contract can implement a lock in storage that prevents re-entrant calls.

References to learn about reentrancy