PullPaymentMock.sol 265 B

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