Files
openzeppelin-contracts/contracts/test-helpers/PullPaymentMock.sol
2016-10-05 17:08:40 -03:00

10 lines
241 B
Solidity

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