diff --git a/src/contracts/BaseVotingStrategy.sol b/src/contracts/BaseVotingStrategy.sol index 8073e65..eb8dd60 100644 --- a/src/contracts/BaseVotingStrategy.sol +++ b/src/contracts/BaseVotingStrategy.sol @@ -88,10 +88,10 @@ abstract contract BaseVotingStrategy is IBaseVotingStrategy { if (asset == AAVE() || asset == STK_AAVE()) { votingAssetConfig.storageSlots = new uint128[](1); - votingAssetConfig.storageSlots[0] = A_AAVE_BASE_BALANCE_SLOT; + votingAssetConfig.storageSlots[0] = BASE_BALANCE_SLOT; } else if (asset == A_AAVE()) { votingAssetConfig.storageSlots = new uint128[](2); - votingAssetConfig.storageSlots[0] = BASE_BALANCE_SLOT; + votingAssetConfig.storageSlots[0] = A_AAVE_BASE_BALANCE_SLOT; votingAssetConfig.storageSlots[1] = A_AAVE_DELEGATED_STATE_SLOT; } else { return votingAssetConfig;