tornado-core/contracts/Mocks/BadRecipient.sol
2021-02-11 09:03:43 +03:00

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