【Require】
pragma solidity ^0.8.11;
contract error {
function testRequire(uint _i) public pure {
require(_i > 10, "Input must be greater than 10");
}
}Last updated
pragma solidity ^0.8.11;
contract error {
function testRequire(uint _i) public pure {
require(_i > 10, "Input must be greater than 10");
}
}Last updated