From d7da74a76c733b7f32e4e9c36817d69e4595cf97 Mon Sep 17 00:00:00 2001 From: Pablo Maldonado Date: Thu, 16 Nov 2023 13:33:17 +0000 Subject: [PATCH] feat: simplify Signed-off-by: Pablo Maldonado --- src/HoneyPot.sol | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/HoneyPot.sol b/src/HoneyPot.sol index 22575e1..5354eb7 100644 --- a/src/HoneyPot.sol +++ b/src/HoneyPot.sol @@ -47,8 +47,6 @@ contract HoneyPot is Ownable { userPot.balance = 0; // reset the balance userPot.liquidationPrice = 0; // reset the liquidation price Address.sendValue(payable(recipient), amount); - - return amount; } function emptyHoneyPot(address honeyPotCreator) external {