Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ concurrency:
cancel-in-progress: true

jobs:
# TODO extract common steps into reusable workflows to resolve
# concurrency issue.
# TODO extract common steps into reusable workflows to resolve
# concurrency issue.
build-and-test:
runs-on: ubuntu-latest
steps:
Expand Down
1 change: 0 additions & 1 deletion contracts/facets/SignatureVerifier.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ pragma solidity ^0.8.0;

import {IERC734} from "../external/interfaces/IERC734.sol";
import {IERC1271} from "@openzeppelin/contracts/interfaces/IERC1271.sol";
// import "@iexec/solidity/contracts/ERC1654/IERC1654.sol";
import {PocoStorageLib} from "../libs/PocoStorageLib.sol";
import {FacetBase} from "./FacetBase.sol";
import {MessageHashUtils} from "@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol";
Expand Down
7 changes: 3 additions & 4 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ const settings = {
enabled: true,
runs: 200,
},
outputSelection: { '*': { '*': ['storageLayout'] } },
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why remove this ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This prevents Hardhat from producing an ast in the build files.

};

const v8Settings = {
Expand All @@ -76,9 +75,9 @@ const v8Settings = {
const config: HardhatUserConfig = {
solidity: {
compilers: [
{ version: '0.8.21', settings: v8Settings }, // PoCo Boost
{ version: '0.6.12', settings }, // PoCo contracts
{ version: '0.4.11', settings }, // RLC contracts
{ version: '0.8.21', settings: v8Settings }, // PoCo contracts
{ version: '0.6.12', settings }, // External dependencies (@amxx/factory)
{ version: '0.4.26', settings }, // RLC contracts - 0.4.26 is the minimum version that produces standard AST output required for storage layout checks
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Change from 0.4.11 to 0.4.26: produces a standard ‘ast’ output

],
},
namedAccounts: {
Expand Down
Loading