Skip to content

Commit

Permalink
capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
jhweintraub committed Aug 12, 2024
1 parent a369f34 commit a3a3b89
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ abstract contract USDCBridgeMigrator is OwnerIsCreator {

mapping(uint64 chainSelector => uint256 lockedBalance) internal s_lockedTokensByChainSelector;

EnumerableSet.UintSet internal s_ExecutedCCTPChainMigrations;
EnumerableSet.UintSet internal s_executedCCTPChainMigrations;

uint64 internal s_proposedUSDCMigrationChain;

Expand Down Expand Up @@ -47,7 +47,7 @@ abstract contract USDCBridgeMigrator is OwnerIsCreator {
delete s_lockedTokensByChainSelector[burnChainSelector];
delete s_proposedUSDCMigrationChain;

s_ExecutedCCTPChainMigrations.add(burnChainSelector);
s_executedCCTPChainMigrations.add(burnChainSelector);

i_USDC.burn(tokensToBurn);

Expand All @@ -64,7 +64,7 @@ abstract contract USDCBridgeMigrator is OwnerIsCreator {
// Ensure that the chain is supported by CCIP and non-zero, hasn't already been executed on, and is
// a valid CCIP-supported chain selector
if (
remoteChainSelector == 0 || s_ExecutedCCTPChainMigrations.contains(remoteChainSelector)
remoteChainSelector == 0 || s_executedCCTPChainMigrations.contains(remoteChainSelector)
|| !i_router.isChainSupported(remoteChainSelector)
) revert InvalidChainSelector(remoteChainSelector);

Expand Down

0 comments on commit a3a3b89

Please sign in to comment.