tornado-core/contracts/Mocks/BadRecipient.sol

9 lines
168 B
Solidity
Raw Normal View History

2021-02-11 06:37:18 +01:00
// SPDX-License-Identifier: MIT
2021-03-11 21:05:59 +01:00
pragma solidity ^0.7.0;
contract BadRecipient {
2021-02-11 06:37:18 +01:00
fallback() external {
require(false, "this contract does not accept ETH");
}
}