rename PullPaymentCapable=>PullPayment

This commit is contained in:
Manuel Araoz
2016-10-05 17:08:40 -03:00
parent 8b921dc6ec
commit 503faa051d
3 changed files with 9 additions and 0 deletions

View 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);
}
}