tornado-core/contracts/Mocks/BadRecipient.sol

8 lines
136 B
Solidity
Raw Normal View History

pragma solidity ^0.5.0;
contract BadRecipient {
function() external {
require(false, "this contract does not accept ETH");
}
}