mirror of
https://github.com/autistic-symposium/blockchains-security-toolkit.git
synced 2025-05-19 23:20:34 -04:00
567 B
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.