This commit is contained in:
qdeswaef
2016-12-13 11:59:59 +01:00

View File

@ -7,6 +7,9 @@ contract PullPaymentMock is PullPayment {
function PullPaymentMock() payable { }
// test helper function to call asyncSend
function PullPaymentMock() payable { }
function callSend(address dest, uint amount) {
asyncSend(dest, amount);
}