Files
openzeppelin-contracts/contracts/examples/PullPaymentCapableExample.sol
2016-10-12 13:53:38 -04:00

10 lines
247 B
Solidity

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);
}
}