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-02-11 07:03:43 +01:00
pragma solidity ^0.6.0;
contract BadRecipient {
2021-02-11 06:37:18 +01:00
fallback() external {
require(false, "this contract does not accept ETH");
}
}