diff options
author | chriseth <c@ethdev.com> | 2016-09-08 23:17:42 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2016-09-08 23:27:14 +0800 |
commit | c1b39b8538fc86573f853e9ff1035df9155d61bd (patch) | |
tree | d855382402b5faaa91052610f70ffa378657759d /test/contracts/Wallet.cpp | |
parent | 8a057e3f854a0f9ef5d7f09ff861da90079ded61 (diff) | |
download | dexon-solidity-c1b39b8538fc86573f853e9ff1035df9155d61bd.tar.gz dexon-solidity-c1b39b8538fc86573f853e9ff1035df9155d61bd.tar.zst dexon-solidity-c1b39b8538fc86573f853e9ff1035df9155d61bd.zip |
Fix version pragma in tests.
Diffstat (limited to 'test/contracts/Wallet.cpp')
-rw-r--r-- | test/contracts/Wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/contracts/Wallet.cpp b/test/contracts/Wallet.cpp index b4f29a87..cfc630d4 100644 --- a/test/contracts/Wallet.cpp +++ b/test/contracts/Wallet.cpp @@ -55,7 +55,7 @@ static char const* walletCode = R"DELIMITER( // some number (specified in constructor) of the set of owners (specified in the constructor, modifiable) before the // interior is executed. -pragma solidity ^0.3.5; +pragma solidity ^0.4.0; contract multiowned { |