Commit c15fa95b by qdeswaef

fixes gh-99 PullPaymentMock needed a payable constructor

parent ab93a8e3
......@@ -3,6 +3,9 @@ import '../PullPayment.sol';
// mock class using PullPayment
contract PullPaymentMock is PullPayment {
function PullPaymentMock() payable { }
// test helper function to call asyncSend
function callSend(address dest, uint amount) {
asyncSend(dest, amount);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment