LimitFunds.sol 137 B

1234567891011
  1. contract LimitFunds {
  2. uint LIMIT = 5000;
  3. function() { throw; }
  4. function deposit() {
  5. if (this.balance > LIMIT) throw;
  6. }
  7. }