Rejector base class

This commit is contained in:
Manuel Araoz
2016-08-09 12:46:17 -03:00
parent e49f9c42a9
commit 01992ec32e

8
contracts/Rejector.sol Normal file
View File

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