Rejector base class
This commit is contained in:
8
contracts/Rejector.sol
Normal file
8
contracts/Rejector.sol
Normal file
@ -0,0 +1,8 @@
|
||||
/*
|
||||
* Rejector
|
||||
* Base contract for rejecting direct deposits.
|
||||
* Fallback function throws immediately.
|
||||
*/
|
||||
contract Rejector {
|
||||
function() { throw; }
|
||||
}
|
||||
Reference in New Issue
Block a user