Skip to content

Commit

Permalink
voting chain mutant 1
Browse files Browse the repository at this point in the history
  • Loading branch information
nisnislevi committed Nov 16, 2023
1 parent cc76f88 commit 30fdfd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/contracts/BaseVotingStrategy.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: BUSL-1.1
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import {IBaseVotingStrategy} from '../interfaces/IBaseVotingStrategy.sol';
Expand Down Expand Up @@ -73,7 +73,7 @@ abstract contract BaseVotingStrategy is IBaseVotingStrategy {
function getVotingAssetList() public pure returns (address[] memory) {
address[] memory votingAssets = new address[](3);

votingAssets[0] = AAVE();
votingAssets[0] = A_AAVE(); //AAVE();
votingAssets[1] = STK_AAVE();
votingAssets[2] = A_AAVE();

Expand Down

0 comments on commit 30fdfd9

Please sign in to comment.