Rejector.sol 154 B

12345678
  1. /*
  2. * Rejector
  3. * Base contract for rejecting direct deposits.
  4. * Fallback function throws immediately.
  5. */
  6. contract Rejector {
  7. function() { throw; }
  8. }