PullPaymentMock.sol 257 B

1234567891011
  1. pragma solidity ^0.4.4;
  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) {
  7. asyncSend(dest, amount);
  8. }
  9. }