Skip to content

Commit

Permalink
Merge pull request #144 from valory-xyz/update_remotes
Browse files Browse the repository at this point in the history
chore: updating remotes
  • Loading branch information
kupermind authored Jan 31, 2024
2 parents 30781c0 + e209e67 commit c89ec9b
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ jobs:

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly-cc5637a979050c39b3d06bc4cc6134f0591ee8d0

# Run linters
- name: Run ESLint
Expand Down
2 changes: 1 addition & 1 deletion hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module.exports = {
solidity: {
compilers: [
{
version: "0.8.21",
version: "0.8.23",
settings: {
optimizer: {
enabled: true,
Expand Down
2 changes: 1 addition & 1 deletion lib/autonolas-governance
2 changes: 1 addition & 1 deletion lib/autonolas-registries
5 changes: 4 additions & 1 deletion test/NodeDeployment.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,15 @@ describe("Node deployment", function () {
const gnosisSafeProxyFactory = await GnosisSafeProxyFactory.deploy();
await gnosisSafeProxyFactory.deployed();

const bytecode = await ethers.provider.getCode(gnosisSafe.address);
const bytecodeHash = ethers.utils.keccak256(bytecode);

const GnosisSafeMultisig = await ethers.getContractFactory("GnosisSafeMultisig");
const gnosisSafeMultisig = await GnosisSafeMultisig.deploy(gnosisSafe.address, gnosisSafeProxyFactory.address);
await gnosisSafeMultisig.deployed();

const GnosisSafeSameAddressMultisig = await ethers.getContractFactory("GnosisSafeSameAddressMultisig");
const gnosisSafeSameAddressMultisig = await GnosisSafeSameAddressMultisig.deploy();
const gnosisSafeSameAddressMultisig = await GnosisSafeSameAddressMultisig.deploy(bytecodeHash);
await gnosisSafeSameAddressMultisig.deployed();

// Creating and updating a service
Expand Down

0 comments on commit c89ec9b

Please sign in to comment.