diff --git a/contracts/RewardsHandler.vy b/contracts/RewardsHandler.vy index 2f5ed7b..b34ae66 100644 --- a/contracts/RewardsHandler.vy +++ b/contracts/RewardsHandler.vy @@ -119,6 +119,7 @@ _SUPPORTED_INTERFACES: constant(bytes4[1]) = [ stablecoin: immutable(IERC20) vault: public(immutable(IVault)) +stablecoin_lens: public(IStablecoinLens) # scaling factor for the deposited token / circulating supply ratio. scaling_factor: public(uint256) @@ -126,9 +127,6 @@ scaling_factor: public(uint256) # the minimum amount of rewards requested to the FeeSplitter. minimum_weight: public(uint256) -# stablecoin circulating supply contract -stablecoin_lens: public(IStablecoinLens) - ################################################################ # CONSTRUCTOR #