Rejector base class

pull/14/head
Manuel Araoz 9 years ago
parent e49f9c42a9
commit 01992ec32e
  1. 8
      contracts/Rejector.sol

@ -0,0 +1,8 @@
/*
* Rejector
* Base contract for rejecting direct deposits.
* Fallback function throws immediately.
*/
contract Rejector {
function() { throw; }
}
Loading…
Cancel
Save