From c68da0811f26612a8c65f3d6ef3c9d383836915f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=98=D0=B3=D0=BE=D1=80=D1=8C=20=D0=A1=D0=BE=D0=B1=D0=BE?= =?UTF-8?q?=D0=BB=D0=B5=D0=B2?= Date: Mon, 1 Jul 2019 16:51:12 +0300 Subject: [PATCH] Updated contracts compiler version to 0.5.10 --- truffle/contracts/IVerifier.sol | 2 +- truffle/contracts/Lazy.sol | 2 +- truffle/contracts/Structs.sol | 2 +- truffle/contracts/VerifierProxy.sol | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/truffle/contracts/IVerifier.sol b/truffle/contracts/IVerifier.sol index c524943..03fbef4 100644 --- a/truffle/contracts/IVerifier.sol +++ b/truffle/contracts/IVerifier.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.5.4; +pragma solidity 0.5.10; pragma experimental ABIEncoderV2; import "./Structs.sol"; diff --git a/truffle/contracts/Lazy.sol b/truffle/contracts/Lazy.sol index afebb57..86c7358 100644 --- a/truffle/contracts/Lazy.sol +++ b/truffle/contracts/Lazy.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.5.4; +pragma solidity 0.5.10; pragma experimental ABIEncoderV2; import "./IVerifier.sol"; diff --git a/truffle/contracts/Structs.sol b/truffle/contracts/Structs.sol index 91f8b36..5d49ced 100644 --- a/truffle/contracts/Structs.sol +++ b/truffle/contracts/Structs.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.5.4; +pragma solidity 0.5.10; interface Structs { struct Data { diff --git a/truffle/contracts/VerifierProxy.sol b/truffle/contracts/VerifierProxy.sol index c051676..2eb85b9 100644 --- a/truffle/contracts/VerifierProxy.sol +++ b/truffle/contracts/VerifierProxy.sol @@ -1,4 +1,4 @@ -pragma solidity ^0.5.4; +pragma solidity 0.5.10; pragma experimental ABIEncoderV2; import "./IVerifier.sol";