diff --git a/contracts/PullPaymentCapable.sol b/contracts/PullPayment.sol similarity index 100% rename from contracts/PullPaymentCapable.sol rename to contracts/PullPayment.sol diff --git a/contracts/test-helpers/PullPaymentMock.sol b/contracts/test-helpers/PullPaymentMock.sol new file mode 100644 index 000000000..ddf5c5f96 --- /dev/null +++ b/contracts/test-helpers/PullPaymentMock.sol @@ -0,0 +1,9 @@ +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); + } +} diff --git a/test/PullPaymentCapable.js b/test/PullPayment.js similarity index 100% rename from test/PullPaymentCapable.js rename to test/PullPayment.js