Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/concrete/vault/OffchainAssetReceiptVault.sol
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ contract OffchainAssetReceiptVault is IAuthorizableV1, ICertifiableV1, IAuthoriz
/// Sets the authorizer contract. This is a critical operation and should be
/// done with extreme care by the owner.
/// @param newAuthorizer The new authorizer contract.
function setAuthorizer(IAuthorizeV1 newAuthorizer) external virtual onlyOwner {
function setAuthorizer(IAuthorizeV1 newAuthorizer) public virtual onlyOwner {
_setAuthorizer(newAuthorizer);
}

Expand Down
Loading