improve PullPaymentCapable

This commit is contained in:
Manuel Araoz
2016-10-11 19:26:48 -03:00
parent 5ec4fbeb45
commit 25a0210118
4 changed files with 89 additions and 21 deletions

View File

@ -1,11 +0,0 @@
pragma solidity ^0.4.0;
import '../PullPayment.sol';
// Example class using PullPayment
contract PullPaymentExample is PullPayment {
// test helper function to call asyncSend
function callSend(address dest, uint amount) external {
asyncSend(dest, amount);
}
}