From 2eb2eb8cb440ec26a1e5e7fd93bd8a51672910cd Mon Sep 17 00:00:00 2001 From: Alberto Date: Fri, 18 Oct 2024 11:57:04 +0200 Subject: [PATCH] style: reorder storage var --- contracts/RewardsHandler.vy | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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 #