From 4769e0572c48e56e3a47a89adf4aaf180e65ebcb Mon Sep 17 00:00:00 2001 From: James Snewin Date: Fri, 17 Nov 2023 09:50:15 +1000 Subject: [PATCH] rm uneeded todo --- src/root/RootERC20Bridge.sol | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/root/RootERC20Bridge.sol b/src/root/RootERC20Bridge.sol index b66d5a22..dcca04b9 100644 --- a/src/root/RootERC20Bridge.sol +++ b/src/root/RootERC20Bridge.sol @@ -421,8 +421,6 @@ contract RootERC20Bridge is IRootERC20Bridge, IRootERC20BridgeEvents, IRootERC20 address receiver, uint256 amount ) internal whenNotPaused { - // TODO when withdrawing ETH/WETH, this next section will also need to check for the withdrawal of WETH (i.e. rootToken == NATIVE_ETH || rootToken == CHILD_WETH) - // Tests for this NATIVE_ETH branch not yet written. This should come as part of that PR. if (rootToken == NATIVE_ETH) { Address.sendValue(payable(receiver), amount); emit RootChainETHWithdraw(NATIVE_ETH, childToken, withdrawer, receiver, amount);