You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
329 B
18 lines
329 B
7 years ago
|
pragma solidity ^0.4.18;
|
||
8 years ago
|
|
||
|
|
||
7 years ago
|
import '../payment/PullPayment.sol';
|
||
8 years ago
|
|
||
8 years ago
|
|
||
8 years ago
|
// mock class using PullPayment
|
||
|
contract PullPaymentMock is PullPayment {
|
||
8 years ago
|
|
||
7 years ago
|
function PullPaymentMock() public payable { }
|
||
8 years ago
|
|
||
8 years ago
|
// test helper function to call asyncSend
|
||
7 years ago
|
function callSend(address dest, uint256 amount) public {
|
||
8 years ago
|
asyncSend(dest, amount);
|
||
|
}
|
||
8 years ago
|
|
||
8 years ago
|
}
|