add PullPaymentCapable test

This commit is contained in:
Manuel Araoz
2016-09-30 18:13:10 -03:00
parent 9c26899010
commit 8f4027cdf6
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import '../contracts/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);
}
}