From 5b2cd6480069843b1a50385649cca601a95665ee Mon Sep 17 00:00:00 2001 From: chuacw <1757930+chuacw@users.noreply.github.com> Date: Thu, 12 Sep 2024 01:58:33 +0800 Subject: [PATCH] Removed more console.log statements --- src/HookDonation.sol | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/HookDonation.sol b/src/HookDonation.sol index 0c24e4a..00893e0 100644 --- a/src/HookDonation.sol +++ b/src/HookDonation.sol @@ -89,11 +89,6 @@ contract AfterSwapDonationHook is BaseHook { ) external override returns (bytes4, int128) { // require(msg.sender == address(poolManager), "Unauthorized caller"); - console.log("afterSwap tx.origin %s", tx.origin); - console.log("afterSwap parameter sender: %s", sender); - console.log("afterSwap msg.sender: %s", msg.sender); - console.log("afterSwap this: %s", address(this)); - // Check that donation is enabled for the tx.origin, otherwise, return early if (!donationEnabled(tx.origin)) { return (this.afterSwap.selector, 0);