modifier onlyOwner() {
require(isOwner());
_;
}
what is the use of the the underscore here and why it is used after almost every require statements!
modifier onlyOwner() {
require(isOwner());
_;
}
what is the use of the the underscore here and why it is used after almost every require statements!