9 lines
154 B
Solidity
9 lines
154 B
Solidity
/*
|
|
* Rejector
|
|
* Base contract for rejecting direct deposits.
|
|
* Fallback function throws immediately.
|
|
*/
|
|
contract Rejector {
|
|
function() { throw; }
|
|
}
|