🔮 Output PredictionSO Solidity Medium⚡+20 XP
Modifier Effect
What does the onlyOwner modifier do?
Solidity
modifier onlyOwner() {
require(msg.sender == owner);
_;
}What does the onlyOwner modifier do?
modifier onlyOwner() {
require(msg.sender == owner);
_;
}