diff --git a/src/concrete/vault/OffchainAssetReceiptVault.sol b/src/concrete/vault/OffchainAssetReceiptVault.sol index 7fea5a8c..0d564bf6 100644 --- a/src/concrete/vault/OffchainAssetReceiptVault.sol +++ b/src/concrete/vault/OffchainAssetReceiptVault.sol @@ -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); }