From 66c3f7dd18a19d05b8a37e94bca255091d023a3c Mon Sep 17 00:00:00 2001 From: Web3 Philosopher Date: Tue, 30 Jul 2024 10:37:16 +0100 Subject: [PATCH] Remove stray event (#276) --- evm/src/modules/TokenGateway.sol | 8 -------- 1 file changed, 8 deletions(-) diff --git a/evm/src/modules/TokenGateway.sol b/evm/src/modules/TokenGateway.sol index 9a2e179d6..93eae543b 100644 --- a/evm/src/modules/TokenGateway.sol +++ b/evm/src/modules/TokenGateway.sol @@ -316,14 +316,6 @@ contract TokenGateway is BaseIsmpModule { address newAdmin ); - // Some native tokens have been withdrawn - event NativeTokenWithdrawal( - // beneficiary of the withdrawal - address beneficiary, - // amount of the native token to withdraw - uint256 amount - ); - // @dev Action is unauthorized error UnauthorizedAction();