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(); }