rename PullPaymentCapable=>PullPayment
This commit is contained in:
9
contracts/test-helpers/PullPaymentMock.sol
Normal file
9
contracts/test-helpers/PullPaymentMock.sol
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
import '../PullPayment.sol';
|
||||||
|
|
||||||
|
// mock class using PullPayment
|
||||||
|
contract PullPaymentMock is PullPayment {
|
||||||
|
// test helper function to call asyncSend
|
||||||
|
function callSend(address dest, uint amount) external {
|
||||||
|
asyncSend(dest, amount);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user