Commit e859d53b by Manuel Aráoz Committed by GitHub

Merge pull request #106 from FundRequest/master

fixes gh-99 PullPaymentMock needed a payable constructor
parents ab93a8e3 9d56414b
...@@ -3,6 +3,9 @@ import '../PullPayment.sol'; ...@@ -3,6 +3,9 @@ import '../PullPayment.sol';
// mock class using PullPayment // mock class using PullPayment
contract PullPaymentMock is PullPayment { contract PullPaymentMock is PullPayment {
function PullPaymentMock() payable { }
// test helper function to call asyncSend // test helper function to call asyncSend
function callSend(address dest, uint amount) { function callSend(address dest, uint amount) {
asyncSend(dest, 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