From 28968a0f940db7b066e3ddc7a95055cb6a2fdb4d Mon Sep 17 00:00:00 2001 From: Akshit Choudhary Date: Sat, 1 May 2021 00:19:58 +0530 Subject: [PATCH] Removed unused function parameter --- contracts/LotteryRewardPool.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/LotteryRewardPool.sol b/contracts/LotteryRewardPool.sol index 16bbac3..60cdf0c 100644 --- a/contracts/LotteryRewardPool.sol +++ b/contracts/LotteryRewardPool.sol @@ -58,7 +58,7 @@ contract LotteryRewardPool is Ownable { } // EMERGENCY ONLY. - function emergencyWithdraw(IBEP20 _token, uint256 _amount) external onlyOwner { + function emergencyWithdraw(uint256 _amount) external onlyOwner { cake.safeTransfer(address(msg.sender), _amount); emit EmergencyWithdraw(msg.sender, _amount); }