some security fixes

This commit is contained in:
Manuel Araoz
2016-08-16 12:14:53 -03:00
parent c543282f40
commit 30c0600ac1
3 changed files with 6 additions and 3 deletions

View File

@ -1,7 +1,7 @@
contract PullPaymentCapable {
mapping(address => uint) refunds;
function asyncSend(address dest, uint amount) {
function asyncSend(address dest, uint amount) internal {
refunds[dest] += amount;
}