fix pullpaymentcapable test
This commit is contained in:
9
contracts/examples/PullPaymentCapableExample.sol
Normal file
9
contracts/examples/PullPaymentCapableExample.sol
Normal file
@ -0,0 +1,9 @@
|
||||
import '../PullPaymentCapable.sol';
|
||||
|
||||
// Example class using PullPaymentCapable
|
||||
contract PullPaymentCapableExample is PullPaymentCapable {
|
||||
// test helper function to call asyncSend
|
||||
function callSend(address dest, uint amount) external {
|
||||
asyncSend(dest, amount);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user