Merge tag 'v2.1.1' of github.com:OpenZeppelin/openzeppelin-solidity

v2.1.1
This commit is contained in:
Francisco Giordano
2019-01-18 15:33:51 -03:00
237 changed files with 8562 additions and 4937 deletions

View File

@ -1,13 +1,10 @@
pragma solidity ^0.4.24;
pragma solidity ^0.5.0;
import "../payment/PullPayment.sol";
// mock class using PullPayment
contract PullPaymentMock is PullPayment {
constructor() public payable {
constructor () public payable {
PullPayment.initialize();
}
@ -15,5 +12,4 @@ contract PullPaymentMock is PullPayment {
function callTransfer(address dest, uint256 amount) public {
_asyncTransfer(dest, amount);
}
}