Co-authored-by: Francisco Giordano <fg@frang.io> Co-authored-by: ernestognw <ernestognw@gmail.com>
18 lines
320 B
Solidity
18 lines
320 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.20;
|
|
|
|
contract EtherReceiverMock {
|
|
bool private _acceptEther;
|
|
|
|
function setAcceptEther(bool acceptEther) public {
|
|
_acceptEther = acceptEther;
|
|
}
|
|
|
|
receive() external payable {
|
|
if (!_acceptEther) {
|
|
revert();
|
|
}
|
|
}
|
|
}
|