mirror of
https://github.com/tornadocash/tornado-core.git
synced 2025-05-08 17:25:04 -04:00
8 lines
168 B
Solidity
8 lines
168 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.7.0;
|
|
|
|
contract BadRecipient {
|
|
fallback() external {
|
|
require(false, "this contract does not accept ETH");
|
|
}
|
|
}
|