tornado-core/contracts/Mocks/BadRecipient.sol

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");
}
}