From dad5121389bc0c8aa178e82eaf46af6b7b47e535 Mon Sep 17 00:00:00 2001 From: delaaxe <1091900+delaaxe@users.noreply.github.com> Date: Sun, 7 Aug 2022 13:13:55 +0200 Subject: [PATCH] Remove unused variable --- contracts/v2/FlashloanV2.sol | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/contracts/v2/FlashloanV2.sol b/contracts/v2/FlashloanV2.sol index 5fc9d2e..4075262 100644 --- a/contracts/v2/FlashloanV2.sol +++ b/contracts/v2/FlashloanV2.sol @@ -85,7 +85,6 @@ contract FlashloanV2 is FlashLoanReceiverBaseV2, Withdrawable { * Flash loan 1000000000000000000 wei (1 ether) worth of `_asset` */ function flashloan(address _asset) public onlyOwner { - bytes memory data = ""; uint amount = 1 ether; address[] memory assets = new address[](1); @@ -96,4 +95,4 @@ contract FlashloanV2 is FlashLoanReceiverBaseV2, Withdrawable { _flashloan(assets, amounts); } -} \ No newline at end of file +}