Add public to PullPaymentCapable data

This commit is contained in:
Manuel Araoz
2016-09-30 18:12:53 -03:00
parent 5dbad00a8e
commit 9c26899010

View File

@ -4,7 +4,7 @@
* Inherit from this contract and use asyncSend instead of send.
*/
contract PullPaymentCapable {
mapping(address => uint) payments;
mapping(address => uint) public payments;
// store sent amount as credit to be pulled, called by payer
function asyncSend(address dest, uint amount) internal {