Commit eb91d2ae authored by Mark Tyneway's avatar Mark Tyneway

contracts-bedrock: relax semver solidity version

Allows contracts to import semver that are at least solidity
version 0.8.0. This allows a wider range of contracts to be
able to use the `Semver` contract, which doesn't need to
be strictly at a higher version.

Fixes build issues in https://github.com/ethereum-optimism/optimism/pull/4879
parent c1153b27
// SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
pragma solidity ^0.8.15; pragma solidity ^0.8.0;
import { Strings } from "@openzeppelin/contracts/utils/Strings.sol"; import { Strings } from "@openzeppelin/contracts/utils/Strings.sol";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment