Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: tests #2

Merged
merged 12 commits into from
Mar 7, 2024
2 changes: 1 addition & 1 deletion packages/contracts/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const config: HardhatUserConfig = {
throwOnTransactionFailures: true,
throwOnCallFailures: true,
blockGasLimit: BigNumber.from(10).pow(6).mul(300).toNumber(), // 300 million, really high to test some things that are only possible with a higher block gas limit
gasPrice: BigNumber.from(10).pow(9).mul(150).toNumber(), // 150 gwei
gasPrice: BigNumber.from(10).pow(9).mul(300).toNumber(), // 300 gwei
heueristik marked this conversation as resolved.
Show resolved Hide resolved
accounts: getHardhatNetworkAccountsConfig(
Object.keys(namedAccounts).length
),
Expand Down
4 changes: 2 additions & 2 deletions packages/contracts/src/mocks/Migration.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ pragma solidity ^0.8.8;
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";

// Regression Testing
import {Multisig as Multisig_v1_0_0} from "@aragon/osx-v1.0.0/plugins/governance/multisig/Multisig.sol";
import {Multisig as Multisig_v1_3_0} from "@aragon/osx-v1.3.0/plugins/governance/multisig/Multisig.sol";
import {Multisig as Multisig_v1_1} from "@aragon/osx-v1.0.0/plugins/governance/multisig/Multisig.sol";
import {Multisig as Multisig_v1_2} from "@aragon/osx-v1.3.0/plugins/governance/multisig/Multisig.sol";

import {ProxyFactory} from "@aragon/osx-commons-contracts/src/utils/deployment/ProxyFactory.sol";

Expand Down
Loading
Loading