Browse Source

Add public to PullPaymentCapable data

Manuel Araoz 9 years ago
parent
commit
9c26899010
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contracts/PullPaymentCapable.sol

+ 1 - 1
contracts/PullPaymentCapable.sol

@@ -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 {