PullPaymentMock.sol 329 B

1234567891011121314151617
  1. pragma solidity ^0.4.18;
  2. import '../payment/PullPayment.sol';
  3. // mock class using PullPayment
  4. contract PullPaymentMock is PullPayment {
  5. function PullPaymentMock() public payable { }
  6. // test helper function to call asyncSend
  7. function callSend(address dest, uint256 amount) public {
  8. asyncSend(dest, amount);
  9. }
  10. }