Files
openzeppelin-contracts/contracts/Rejector.sol
2016-10-12 13:52:24 -04:00

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; }
}