Skip to content

Commit

Permalink
chore: external functions
Browse files Browse the repository at this point in the history
  • Loading branch information
Schlagonia committed May 23, 2024
1 parent 54346da commit de11c98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/L1Deployer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ contract L1Deployer is DeployerBase {
*/
function getEscrowManager(
uint32 _rollupID
) public view virtual returns (address) {
) external view virtual returns (address) {
return _chainConfig[_rollupID].escrowManager;
}

Expand Down
4 changes: 2 additions & 2 deletions src/RoleManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ contract RoleManager is Positions {
* @param _asset The underlying asset used.
* @return The default vault for the specified `_asset`.
*/
function getVault(address _asset) public view virtual returns (address) {
function getVault(address _asset) external view virtual returns (address) {
return getVault(_asset, ORIGIN_NETWORK_ID);
}

Expand Down Expand Up @@ -611,7 +611,7 @@ contract RoleManager is Positions {
*/
function isVaultsRoleManager(
address _vault
) public view virtual returns (bool) {
) external view virtual returns (bool) {
return vaultConfig[_vault].asset != address(0);
}

Expand Down

0 comments on commit de11c98

Please sign in to comment.