Files
openzeppelin-contracts/contracts/test-helpers/PullPaymentMock.sol
2016-11-08 12:19:07 -03:00

12 lines
257 B
Solidity

pragma solidity ^0.4.4;
import '../PullPayment.sol';
// mock class using PullPayment
contract PullPaymentMock is PullPayment {
// test helper function to call asyncSend
function callSend(address dest, uint amount) {
asyncSend(dest, amount);
}
}