From 052e05bc8d5abe96c5a8bfe2aa6434de578303ee Mon Sep 17 00:00:00 2001 From: Samyak Jain <34437877+KaymasJain@users.noreply.github.com> Date: Sun, 13 Sep 2020 03:34:36 +1000 Subject: [PATCH] removed storage variable --- contracts/logics/settle/eth/crvMining.sol | 6 ------ 1 file changed, 6 deletions(-) diff --git a/contracts/logics/settle/eth/crvMining.sol b/contracts/logics/settle/eth/crvMining.sol index 5f1eb0f..c38b481 100644 --- a/contracts/logics/settle/eth/crvMining.sol +++ b/contracts/logics/settle/eth/crvMining.sol @@ -5,8 +5,6 @@ import { DSMath } from "../../../libs/safeMath.sol"; contract LogicOne { - address poolToken; - function compCrvMine(uint amt) public { // borrow from Compound & deposit in Curve (static logic for DAI) // check if status is safe and only have assets in the specific tokens @@ -16,10 +14,6 @@ contract LogicOne { // Withdraw from Curve and payback on Compound } - constructor (address ethPool) public { - poolToken = address(ethPool); - } - receive() external payable {} }