From 09b2eb9465e342bbb55457bbf32d30d9111c9aa2 Mon Sep 17 00:00:00 2001 From: mattstam Date: Wed, 30 Oct 2024 15:47:08 -0700 Subject: [PATCH] fix: remove locked 0.8.20 on groth16 verifier --- contracts/src/SP1MockVerifier.sol | 2 +- contracts/src/SP1VerifierGateway.sol | 2 +- contracts/src/v3.0.0/Groth16Verifier.sol | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/src/SP1MockVerifier.sol b/contracts/src/SP1MockVerifier.sol index b403d02..cd6903a 100644 --- a/contracts/src/SP1MockVerifier.sol +++ b/contracts/src/SP1MockVerifier.sol @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -pragma solidity ^0.8.19; +pragma solidity ^0.8.20; import {ISP1Verifier} from "./ISP1Verifier.sol"; diff --git a/contracts/src/SP1VerifierGateway.sol b/contracts/src/SP1VerifierGateway.sol index 3100180..1feda52 100644 --- a/contracts/src/SP1VerifierGateway.sol +++ b/contracts/src/SP1VerifierGateway.sol @@ -3,7 +3,7 @@ pragma solidity ^0.8.20; import {ISP1Verifier, ISP1VerifierWithHash} from "./ISP1Verifier.sol"; import {ISP1VerifierGateway, VerifierRoute} from "./ISP1VerifierGateway.sol"; -import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; +import {Ownable} from "../lib/openzeppelin-contracts/contracts/access/Ownable.sol"; /// @title SP1 Verifier Gateway /// @author Succinct Labs diff --git a/contracts/src/v3.0.0/Groth16Verifier.sol b/contracts/src/v3.0.0/Groth16Verifier.sol index 6bc56c6..23ca185 100644 --- a/contracts/src/v3.0.0/Groth16Verifier.sol +++ b/contracts/src/v3.0.0/Groth16Verifier.sol @@ -1,6 +1,6 @@ // SPDX-License-Identifier: MIT -pragma solidity 0.8.20; +pragma solidity ^0.8.20; /// @title Groth16 verifier template. /// @author Remco Bloemen