Skip to content

Commit

Permalink
Merge pull request #5 from ethereum-optimism/sc/solc-loose-version
Browse files Browse the repository at this point in the history
maint: make solidity version loose
  • Loading branch information
smartcontracts authored Oct 3, 2024
2 parents 4f628ec + 3d3754a commit 7d93217
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/StatefulSponge.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.0;

import { LibKeccak } from "contracts/lib/LibKeccak.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/lib/LibKeccak.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.0;

/// @title LibKeccak
/// @notice An EVM implementation of the Keccak-f[1600] permutation.
Expand Down

0 comments on commit 7d93217

Please sign in to comment.