mirror of
https://github.com/tornadocash/tornado-core.git
synced 2024-11-01 07:45:20 +01:00
8 lines
136 B
Solidity
8 lines
136 B
Solidity
pragma solidity ^0.5.0;
|
|
|
|
contract BadRecipient {
|
|
function() external {
|
|
require(false, "this contract does not accept ETH");
|
|
}
|
|
}
|