mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix version pragma in tests.
This commit is contained in:
parent
8a057e3f85
commit
c1b39b8538
@ -39,7 +39,7 @@ namespace
|
|||||||
{
|
{
|
||||||
|
|
||||||
static char const* registrarCode = R"DELIMITER(
|
static char const* registrarCode = R"DELIMITER(
|
||||||
pragma solidity ^0.3.5;
|
pragma solidity ^0.4.0;
|
||||||
|
|
||||||
contract NameRegister {
|
contract NameRegister {
|
||||||
function addr(string _name) constant returns (address o_owner);
|
function addr(string _name) constant returns (address o_owner);
|
||||||
|
@ -52,7 +52,7 @@ static char const* registrarCode = R"DELIMITER(
|
|||||||
// @authors:
|
// @authors:
|
||||||
// Gav Wood <g@ethdev.com>
|
// Gav Wood <g@ethdev.com>
|
||||||
|
|
||||||
pragma solidity ^0.3.5;
|
pragma solidity ^0.4.0;
|
||||||
|
|
||||||
contract Registrar {
|
contract Registrar {
|
||||||
event Changed(string indexed name);
|
event Changed(string indexed name);
|
||||||
|
@ -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
|
// some number (specified in constructor) of the set of owners (specified in the constructor, modifiable) before the
|
||||||
// interior is executed.
|
// interior is executed.
|
||||||
|
|
||||||
pragma solidity ^0.3.5;
|
pragma solidity ^0.4.0;
|
||||||
|
|
||||||
contract multiowned {
|
contract multiowned {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user