tornado-contracts/contracts/Classic/Mocks/BadRecipient.sol
2024-03-29 21:52:45 +00:00

9 lines
169 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
contract BadRecipient {
fallback() external {
require(false, "this contract does not accept ETH");
}
}