convert RefundEscrow to initializers
This commit is contained in:
10
contracts/mocks/RefundEscrowMock.sol
Normal file
10
contracts/mocks/RefundEscrowMock.sol
Normal file
@ -0,0 +1,10 @@
|
||||
pragma solidity ^0.4.24;
|
||||
|
||||
import "../Initializable.sol";
|
||||
import "../payment/RefundEscrow.sol";
|
||||
|
||||
contract RefundEscrowMock is Initializable, RefundEscrow {
|
||||
constructor(address beneficiary) public {
|
||||
RefundEscrow.initialize(beneficiary);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user