From db47f82b669f53037031d040bd31afa77e0d7402 Mon Sep 17 00:00:00 2001 From: James Snewin Date: Tue, 14 Nov 2023 15:57:17 +1000 Subject: [PATCH] last comment fix --- src/root/RootERC20Bridge.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/root/RootERC20Bridge.sol b/src/root/RootERC20Bridge.sol index e7149839..47d490d5 100644 --- a/src/root/RootERC20Bridge.sol +++ b/src/root/RootERC20Bridge.sol @@ -170,7 +170,7 @@ contract RootERC20Bridge is */ receive() external payable { // Revert if sender is not the WETH token address - // Or the WETH contract is not set (contract not initialized) + // Or the rootWETHToken is not set (contract not initialized) if (msg.sender != rootWETHToken || rootWETHToken == address(0)) { revert NonWrappedNativeTransfer(); }