Files
openzeppelin-contracts/certora/munged/mocks/EtherReceiverMock.sol
2021-12-01 10:03:21 -05:00

18 lines
319 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract EtherReceiverMock {
bool private _acceptEther;
function setAcceptEther(bool acceptEther) public {
_acceptEther = acceptEther;
}
receive() external payable {
if (!_acceptEther) {
revert();
}
}
}