8 lines
168 B
Solidity
8 lines
168 B
Solidity
|
// SPDX-License-Identifier: MIT
|
||
|
pragma solidity >=0.8.17;
|
||
|
|
||
|
//sending eth should fall because fallback is not payable
|
||
|
contract NotPayable {
|
||
|
fallback() external {}
|
||
|
}
|