tornado-core/contracts/Mocks/BadRecipient.sol

10 lines
169 B
Solidity

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