Files
openzeppelin-contracts/contracts/examples/PullPaymentExample.sol
2016-10-12 14:02:54 -04:00

12 lines
272 B
Solidity

pragma solidity ^0.4.0;
import '../PullPayment.sol';
// Example class using PullPayment
contract PullPaymentExample is PullPayment {
// test helper function to call asyncSend
function callSend(address dest, uint amount) external {
asyncSend(dest, amount);
}
}