10 lines
178 B
Solidity
10 lines
178 B
Solidity
pragma solidity ^0.4.0;
|
|
/*
|
|
* Rejector
|
|
* Base contract for rejecting direct deposits.
|
|
* Fallback function throws immediately.
|
|
*/
|
|
contract Rejector {
|
|
function() { throw; }
|
|
}
|