Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
bowenli86 committed Dec 1, 2023
1 parent 9a8d074 commit efef99f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/contracts/core/DelegationManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ contract DelegationManager is Initializable, OwnableUpgradeable, Pausable, Deleg
* @param metadataURI The URI for metadata associated with an operator
*/
function updateOperatorMetadataURI(string calldata metadataURI) external {
require(isOperator(msg.sender), "DelegationManager.updateOperatorMetadataURI: caller must be an operator");
emit OperatorMetadataURIUpdated(msg.sender, metadataURI);
}

Expand Down

0 comments on commit efef99f

Please sign in to comment.