mirror of
https://github.com/tornadocash/tornado-core.git
synced 2025-05-13 03:32:31 -04:00
7 lines
136 B
Solidity
7 lines
136 B
Solidity
pragma solidity ^0.5.0;
|
|
|
|
contract BadRecipient {
|
|
function() external {
|
|
require(false, "this contract does not accept ETH");
|
|
}
|
|
}
|