mirror of
https://github.com/tornadocash/tornado-core.git
synced 2024-11-22 09:47:13 +01:00
9 lines
168 B
Solidity
9 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");
|
|
}
|
|
}
|