Skip to content

Commit 844e391

Browse files
authored
Apply suggestions from code review
1 parent 4d57e9b commit 844e391

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contracts/chain-adapters/ZkStack_Adapter.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ contract ZkStack_Adapter is AdapterInterface, CircleCCTPAdapter {
193193
);
194194
}
195195
} else {
196-
// An ERC20 that is not WETH nor USDC.
196+
// An ERC20 that is not WETH nor Circle Bridged/Native USDC on the L2.
197197
IERC20(l1Token).forceApprove(SHARED_BRIDGE, amount);
198198
txHash = BRIDGE_HUB.requestL2TransactionTwoBridges{ value: txBaseCost }(
199199
BridgeHubInterface.L2TransactionRequestTwoBridgesOuter({

contracts/chain-adapters/ZkStack_CustomGasToken_Adapter.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ contract ZkStack_CustomGasToken_Adapter is AdapterInterface, CircleCCTPAdapter {
236236
);
237237
}
238238
} else {
239-
// An ERC20 that is not WETH, USDC, nor the custom gas token.
239+
// An ERC20 that is not WETH nor Circle Bridged/Native USDC on the L2.
240240
IERC20(CUSTOM_GAS_TOKEN).forceApprove(SHARED_BRIDGE, txBaseCost);
241241
IERC20(l1Token).forceApprove(SHARED_BRIDGE, amount);
242242
txHash = BRIDGE_HUB.requestL2TransactionTwoBridges(

0 commit comments

Comments
 (0)