Files
openzeppelin-contracts/contracts/examples/PullPaymentCapableExample.sol
2016-09-30 18:51:42 -03:00

10 lines
275 B
Solidity

import '../PullPaymentCapable.sol';
// Example class using PullPaymentCapable
contract PullPaymentCapableExample is PullPaymentCapable {
// test helper function to call asyncSend
function callSend(address dest, uint amount) external {
asyncSend(dest, amount);
}
}