I would like to understand a part of the Ownable()
contract of the OpenZeppelin Solidity library:
modifier onlyOwner() {
require(isOwner());
_;
}
The last line of this modifier consists only of an underscore. Can anybody please explain to me or refer what the underscore does?
I checked other questions involving modifiers but could only find out that an underscore-command is an existential part of a modifier.