truffle 2=>3

This commit is contained in:
Manuel Araoz
2017-02-15 12:14:50 -03:00
parent a69333e2b8
commit 7e7193ae61
19 changed files with 33 additions and 13 deletions

View File

@ -0,0 +1,17 @@
pragma solidity ^0.4.4;
import '../../contracts/payment/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);
}
}