Require function
function buy(uint256 amount) public payable {
require(msg.value == amount * price, "Incorrect payment amount.");
// ... rest of the function
}Last updated
function buy(uint256 amount) public payable {
require(msg.value == amount * price, "Incorrect payment amount.");
// ... rest of the function
}Last updated