From 7add58bef52a92e37b2dc72f380b94f77da65d79 Mon Sep 17 00:00:00 2001 From: Hendrik Hofstadt Date: Thu, 6 Aug 2020 23:36:49 +0200 Subject: [PATCH] clean up contract --- ethereum/contracts/Wormhole.sol | 8 -------- 1 file changed, 8 deletions(-) diff --git a/ethereum/contracts/Wormhole.sol b/ethereum/contracts/Wormhole.sol index 1003a88ad..3883e4ec1 100644 --- a/ethereum/contracts/Wormhole.sol +++ b/ethereum/contracts/Wormhole.sol @@ -45,13 +45,6 @@ contract Wormhole { uint256 amount ); - event LogTokensUnlocked( - address indexed token, - bytes32 indexed sender, - address recipient, - uint256 amount - ); - // Mapping of guardian_set_index => guardian set mapping(uint32 => GuardianSet) public guardian_sets; // Current active guardian set @@ -179,7 +172,6 @@ contract Wormhole { IERC20(token_address).safeTransfer(target_address, amount); } - // Safely transfer tokens out } function deployWrappedAsset(bytes32 seed, uint8 token_chain, bytes32 token_address) private returns (address asset){