LimitFunds.sol 161 B

123456789101112
  1. pragma solidity ^0.4.4;
  2. contract LimitFunds {
  3. uint LIMIT = 5000;
  4. function() { throw; }
  5. function deposit() {
  6. if (this.balance > LIMIT) throw;
  7. }
  8. }