mirror of
https://github.com/tornadocash/tornado-core.git
synced 2024-11-26 11:48:57 +01:00
9 lines
168 B
Solidity
9 lines
168 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.6.0;
|
|
|
|
contract BadRecipient {
|
|
fallback() external {
|
|
require(false, "this contract does not accept ETH");
|
|
}
|
|
}
|