Add a SplitPullPayment contract that combines distribution of funds and delayed withdrawal from each party

This commit is contained in:
Ariel Barmat
2017-08-29 03:40:41 -03:00
parent 8336785a9b
commit 69e83e5086
3 changed files with 79 additions and 0 deletions

View File

@ -0,0 +1,9 @@
pragma solidity ^0.4.15;
import '../../contracts/payment/SplitPullPayment.sol';
// mock class using SplitPullPaymentMock
contract SplitPullPaymentMock is SplitPullPayment {
function SplitPullPaymentMock() SplitPayment(0) payable { }
function () payable {}
}