diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-07-28 19:57:11 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-09-26 02:03:24 +0800 |
commit | d05fdb51b0a7fa1fd3d31e0a65c5ce3e634e1aeb (patch) | |
tree | 4f00e240d3519fa063622e9265a28b4471295f47 /test/contracts/FixedFeeRegistrar.cpp | |
parent | e9b2c650ce1f08386a9eb4eda217b5be8917cb21 (diff) | |
download | dexon-solidity-d05fdb51b0a7fa1fd3d31e0a65c5ce3e634e1aeb.tar.gz dexon-solidity-d05fdb51b0a7fa1fd3d31e0a65c5ce3e634e1aeb.tar.zst dexon-solidity-d05fdb51b0a7fa1fd3d31e0a65c5ce3e634e1aeb.zip |
Require 0.5.0 in contract tests
Diffstat (limited to 'test/contracts/FixedFeeRegistrar.cpp')
-rw-r--r-- | test/contracts/FixedFeeRegistrar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/contracts/FixedFeeRegistrar.cpp b/test/contracts/FixedFeeRegistrar.cpp index ae921a96..e82f389f 100644 --- a/test/contracts/FixedFeeRegistrar.cpp +++ b/test/contracts/FixedFeeRegistrar.cpp @@ -53,7 +53,7 @@ static char const* registrarCode = R"DELIMITER( // @authors: // Gav Wood <g@ethdev.com> -pragma solidity ^0.4.0; +pragma solidity >=0.4.0 <0.6.0; contract Registrar { event Changed(string indexed name); |