PullPaymentMock.sol 241 B

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