PullPaymentCapableExample.sol 275 B

123456789
  1. import '../PullPaymentCapable.sol';
  2. // Example class using PullPaymentCapable
  3. contract PullPaymentCapableExample is PullPaymentCapable {
  4. // test helper function to call asyncSend
  5. function callSend(address dest, uint amount) external {
  6. asyncSend(dest, amount);
  7. }
  8. }