Files
openzeppelin-contracts/contracts/LimitFunds.sol
2016-08-12 11:30:46 -03:00

12 lines
137 B
Solidity

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