BadRecipient.sol 168 B

123456789
  1. // SPDX-License-Identifier: MIT
  2. pragma solidity ^0.7.0;
  3. contract BadRecipient {
  4. fallback() external {
  5. require(false, "this contract does not accept ETH");
  6. }
  7. }