Skip to content

Commit

Permalink
lock pragma and update function visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
jhweintraub committed Oct 17, 2024
1 parent b7067b5 commit 16a43d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/src/v0.8/ccip/pools/USDC/USDCBridgeMigrator.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.24;
pragma solidity 0.8.24;

import {OwnerIsCreator} from "../../../shared/access/OwnerIsCreator.sol";
import {IBurnMintERC20} from "../../../shared/token/ERC20/IBurnMintERC20.sol";
Expand Down Expand Up @@ -153,7 +153,7 @@ abstract contract USDCBridgeMigrator is OwnerIsCreator {
/// @dev The sum of locked tokens and excluded tokens should equal the supply of the token on the remote chain
/// @param remoteChainSelector The chain for which the excluded tokens are being queried
/// @return uint256 amount of tokens excluded from being burned in a CCTP-migration
function getExcludedTokensByChain(uint64 remoteChainSelector) public view returns (uint256) {
function getExcludedTokensByChain(uint64 remoteChainSelector) external view returns (uint256) {
return s_tokensExcludedFromBurn[remoteChainSelector];
}
}

0 comments on commit 16a43d6

Please sign in to comment.