Files
openzeppelin-contracts/test/PullPaymentCapableExample.sol
2016-09-30 18:13:10 -03:00

10 lines
285 B
Solidity

import '../contracts/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);
}
}