fix pullpaymentcapable test

This commit is contained in:
Manuel Araoz
2016-09-30 18:51:42 -03:00
parent 8f4027cdf6
commit 8b921dc6ec
2 changed files with 8 additions and 5 deletions

View File

@ -0,0 +1,9 @@
import '../PullPaymentCapable.sol';
// Example class using PullPaymentCapable
contract PullPaymentCapableExample is PullPaymentCapable {
// test helper function to call asyncSend
function callSend(address dest, uint amount) external {
asyncSend(dest, amount);
}
}