diff --git a/contracts/Rejector.sol b/contracts/Rejector.sol new file mode 100644 index 000000000..3d9d92ca3 --- /dev/null +++ b/contracts/Rejector.sol @@ -0,0 +1,8 @@ +/* + * Rejector + * Base contract for rejecting direct deposits. + * Fallback function throws immediately. + */ +contract Rejector { + function() { throw; } +}