PullPaymentExample.sol 272 B

1234567891011
  1. pragma solidity ^0.4.0;
  2. import '../PullPayment.sol';
  3. // Example class using PullPayment
  4. contract PullPaymentExample is PullPayment {
  5. // test helper function to call asyncSend
  6. function callSend(address dest, uint amount) external {
  7. asyncSend(dest, amount);
  8. }
  9. }