Commit 06983a20 by Francisco Giordano Committed by Nicolás Venturo

add note suggesting reentrancy post (#2059)

parent d0372177
...@@ -12,6 +12,10 @@ import "./escrow/Escrow.sol"; ...@@ -12,6 +12,10 @@ import "./escrow/Escrow.sol";
* Ether, security-wise. It prevents recipients from blocking execution, and * Ether, security-wise. It prevents recipients from blocking execution, and
* eliminates reentrancy concerns. * eliminates reentrancy concerns.
* *
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*
* To use, derive from the `PullPayment` contract, and use {_asyncTransfer} * To use, derive from the `PullPayment` contract, and use {_asyncTransfer}
* instead of Solidity's `transfer` function. Payees can query their due * instead of Solidity's `transfer` function. Payees can query their due
* payments with {payments}, and retrieve them with {withdrawPayments}. * payments with {payments}, and retrieve them with {withdrawPayments}.
......
...@@ -12,6 +12,10 @@ pragma solidity ^0.5.0; ...@@ -12,6 +12,10 @@ pragma solidity ^0.5.0;
* those functions `private`, and then adding `external` `nonReentrant` entry * those functions `private`, and then adding `external` `nonReentrant` entry
* points to them. * points to them.
* *
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*
* _Since v2.5.0:_ this module is now much more gas efficient, given net gas * _Since v2.5.0:_ this module is now much more gas efficient, given net gas
* metering changes introduced in the Istanbul hardfork. * metering changes introduced in the Istanbul hardfork.
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment