From bdab2318336182a12db35290f0dfa7765aa28c5e Mon Sep 17 00:00:00 2001 From: Daniel Goldman Date: Mon, 5 Feb 2024 15:17:43 -0500 Subject: [PATCH] remove erroneous note --- contracts/tokenbridge/ethereum/gateway/L1ArbitrumGateway.sol | 3 +-- contracts/tokenbridge/ethereum/gateway/L1GatewayRouter.sol | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/contracts/tokenbridge/ethereum/gateway/L1ArbitrumGateway.sol b/contracts/tokenbridge/ethereum/gateway/L1ArbitrumGateway.sol index 87507dd5e..bdef669b4 100644 --- a/contracts/tokenbridge/ethereum/gateway/L1ArbitrumGateway.sol +++ b/contracts/tokenbridge/ethereum/gateway/L1ArbitrumGateway.sol @@ -225,8 +225,7 @@ abstract contract L1ArbitrumGateway is * - an address where a contract will be created * - an address where a contract lived, but was destroyed * The msg.sender that calls this method, or its L2 alias if it has code in L1, will be set to the callValueRefundAddress; - * this means it can cancel the retryable ticket if its auto-redeem fails, and also that it receives the l2 callvalue refund - * (although note that for this method there is no l2 callvalue). + * this means it can cancel the retryable ticket if its auto-redeem fails, and also that it receives the l2 callvalue refund. * @param _l1Token L1 address of ERC20 * @param _refundTo Account, or its L2 alias if it have code in L1, to be credited with excess gas refund in L2 * @param _to Account to be credited with the tokens in the L2 (can be an EOA or a contract), not subject to L2 aliasing diff --git a/contracts/tokenbridge/ethereum/gateway/L1GatewayRouter.sol b/contracts/tokenbridge/ethereum/gateway/L1GatewayRouter.sol index 77903f88a..ec356564f 100644 --- a/contracts/tokenbridge/ethereum/gateway/L1GatewayRouter.sol +++ b/contracts/tokenbridge/ethereum/gateway/L1GatewayRouter.sol @@ -295,8 +295,7 @@ contract L1GatewayRouter is * - an address where a contract will be created * - an address where a contract lived, but was destroyed * The msg.sender that calls this method, or its L2 alias if it has code in L1, will be set to the callValueRefundAddress; - * this means it can cancel the retryable ticket if its auto-redeem fails, and also that it receives the l2 callvalue refund - * (although note that for this method there is no l2 callvalue). + * this means it can cancel the retryable ticket if its auto-redeem fails, and also that it receives the l2 callvalue refund. * @param _token L1 address of ERC20 * @param _refundTo Account, or its L2 alias if it have code in L1, to be credited with excess gas refund in L2 * @param _to Account to be credited with the tokens in the L2 (can be an EOA or a contract), not subject to L2 aliasing.