Skip to content

Commit

Permalink
fix: lint erros and sol compiler errors
Browse files Browse the repository at this point in the history
  • Loading branch information
TravellerOnTheRun committed Jun 27, 2024
1 parent 2a0e5a5 commit 747bfa1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/Governor.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
pragma solidity ^0.8.20;

import "@openzeppelin/contracts-upgradeable/governance/GovernorUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/governance/extensions/GovernorSettingsUpgradeable.sol";
Expand Down
4 changes: 2 additions & 2 deletions test/Governor.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect } from 'chai'
import hre, { ethers } from 'hardhat'
import { ethers } from 'hardhat'
import { loadFixture, mine } from '@nomicfoundation/hardhat-toolbox/network-helpers'
import { randBetween } from 'bigint-crypto-utils'
import { deployRif } from '../scripts/deploy-rif'
Expand Down Expand Up @@ -62,7 +62,7 @@ describe('RootDAO Contact', () => {
const sendAmount = '2'
let proposal: Proposal
let proposalId: bigint
let proposalCalldata: string
// let proposalCalldata: string
let proposalSnapshot: bigint

describe('Proposal Creation', () => {
Expand Down

0 comments on commit 747bfa1

Please sign in to comment.