You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* When a user sends a transaction to a smart contract, they can include ether with the transaction.
* In solidity we denote that we wish to accept this ether by either marking the function as payable or adding a payable fallback/receive function to our contract
*
* The task is to write within the `MAIN` macro below, huff code that reverts if ether is sent with the transaction.