Commit 0e58f7b9 by qdeswaef

fixes gh-99 PullPaymentMock needed a payable constructor

parent ab93a8e3
......@@ -4,6 +4,9 @@ import '../PullPayment.sol';
// mock class using PullPayment
contract PullPaymentMock is PullPayment {
// test helper function to call asyncSend
function PullPaymentMock() payable { }
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