Skip to content

Commit

Permalink
chore: fix missing import (#216)
Browse files Browse the repository at this point in the history
* fix: missing import

* chore: add generated file
  • Loading branch information
brotherlymite authored Aug 24, 2023
1 parent 4112844 commit bb6132c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/generator_gov_v2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function writeGovV2Templates(govV2Addresses: GovernanceV2): void {
pragma experimental ABIEncoderV2;
import {IGovernanceStrategy} from './common/IGovernanceStrategy.sol';
import {IAaveGovernanceV2} from './common/IAaveGovernanceV2.sol';
import {IAaveGovernanceV2, IExecutorWithTimelock} from './common/IAaveGovernanceV2.sol';
library AaveGovernanceV2 {
${generateGovV2AddressesSol(govV2Addresses)}
Expand Down
2 changes: 1 addition & 1 deletion src/AaveGovernanceV2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity >=0.6.0;
pragma experimental ABIEncoderV2;

import {IGovernanceStrategy} from './common/IGovernanceStrategy.sol';
import {IAaveGovernanceV2} from './common/IAaveGovernanceV2.sol';
import {IAaveGovernanceV2, IExecutorWithTimelock} from './common/IAaveGovernanceV2.sol';

library AaveGovernanceV2 {
IAaveGovernanceV2 public constant GOV =
Expand Down

0 comments on commit bb6132c

Please sign in to comment.