Files
openzeppelin-contracts/contracts/Rejector.sol
2016-08-09 12:46:17 -03:00

9 lines
154 B
Solidity

/*
* Rejector
* Base contract for rejecting direct deposits.
* Fallback function throws immediately.
*/
contract Rejector {
function() { throw; }
}