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