Skip to content

Commit

Permalink
Set the same Solidity version across configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
forshtat committed Aug 14, 2024
1 parent a319166 commit 1ed9be6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1

- uses: actions/checkout@v1
- uses: actions/checkout@v2
with:
submodules: 'true'
- uses: actions/cache@v2
with:
path: node_modules
Expand Down
2 changes: 1 addition & 1 deletion contracts/predeploys/NonceManager.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
pragma solidity 0.8.19;

/// @title NonceManager
/// @notice The NonceManager manages nonce of smart accounts using RIP-7560.
Expand Down
2 changes: 1 addition & 1 deletion contracts/test/NonceManager.t.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.15;
pragma solidity 0.8.19;

// Testing utilities
import { Test } from "forge-std/Test.sol";
Expand Down
2 changes: 1 addition & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import "@nomicfoundation/hardhat-toolbox";
import "@nomicfoundation/hardhat-foundry"

const config: HardhatUserConfig = {
solidity: "0.8.24",
solidity: "0.8.19",
};

export default config;

0 comments on commit 1ed9be6

Please sign in to comment.