Skip to content

Commit

Permalink
contracts: fixed different solidity versions being used
Browse files Browse the repository at this point in the history
  • Loading branch information
0x31 committed Oct 30, 2019
1 parent 9473c56 commit 0048855
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion contracts/libraries/Claimable.sol
@@ -1,4 +1,4 @@
pragma solidity ^0.5.2;
pragma solidity ^0.5.12;

/**
* @title Claimable
Expand Down
2 changes: 1 addition & 1 deletion contracts/libraries/Compare.sol
@@ -1,4 +1,4 @@
pragma solidity ^0.5.2;
pragma solidity ^0.5.12;

library Compare {

Expand Down
2 changes: 1 addition & 1 deletion contracts/libraries/ERC20WithFees.sol
@@ -1,4 +1,4 @@
pragma solidity ^0.5.2;
pragma solidity ^0.5.12;

import "openzeppelin-solidity/contracts/token/ERC20/IERC20.sol";
import "openzeppelin-solidity/contracts/token/ERC20/SafeERC20.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/libraries/String.sol
@@ -1,4 +1,4 @@
pragma solidity ^0.5.2;
pragma solidity ^0.5.12;

library String {

Expand Down
2 changes: 1 addition & 1 deletion contracts/libraries/Validate.sol
@@ -1,4 +1,4 @@
pragma solidity ^0.5.8;
pragma solidity ^0.5.12;

import "openzeppelin-solidity/contracts/cryptography/ECDSA.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/test/CompareTest.sol
@@ -1,4 +1,4 @@
pragma solidity ^0.5.2;
pragma solidity ^0.5.12;

import { Compare } from "../libraries/Compare.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/test/StringTest.sol
@@ -1,4 +1,4 @@
pragma solidity ^0.5.2;
pragma solidity ^0.5.12;

import { String } from "../libraries/String.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/test/ValidateTest.sol
@@ -1,4 +1,4 @@
pragma solidity ^0.5.8;
pragma solidity ^0.5.12;

import "../libraries/Validate.sol";

Expand Down

0 comments on commit 0048855

Please sign in to comment.