Files
openzeppelin-contracts/contracts/LimitFunds.sol
2016-11-08 12:19:07 -03:00

13 lines
161 B
Solidity

pragma solidity ^0.4.4;
contract LimitFunds {
uint LIMIT = 5000;
function() { throw; }
function deposit() {
if (this.balance > LIMIT) throw;
}
}