From 1ab2c957ca7b876503918cc3863c9b9819315911 Mon Sep 17 00:00:00 2001 From: Christina <156356273+cratiu222@users.noreply.github.com> Date: Sun, 14 Jul 2024 14:53:48 +0300 Subject: [PATCH] fix missing verb HundredFinanceHack.sol --- pocs/HundredFinanceHack.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pocs/HundredFinanceHack.sol b/pocs/HundredFinanceHack.sol index a656107..db79b5e 100644 --- a/pocs/HundredFinanceHack.sol +++ b/pocs/HundredFinanceHack.sol @@ -46,7 +46,7 @@ contract HundredFinanceHack is FlashLoan, Reentrancy, PoC { borrowedXdai = true; uint256 amount = (totalFlashloaned * 1e12) * 60 / 100; - // Borrow xdai agaist the same usdc collateral, since the initial borrow transaction hasn't completed + // Borrow xdai agaist the same usdc collateral, since the initial borrow transaction hasn't been completed // we can reuse the collateral ICompoundToken(address(hxdai)).borrow(amount); }