Store strict version number in metadata (exclude the platform)

This commit is contained in:
Alex Beregszaszi
2017-01-17 12:54:58 +00:00
parent a466f26c45
commit 350c7e7e2c
4 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -695,7 +695,7 @@ string CompilerStack::createOnChainMetadata(Contract const& _contract) const
Json::Value meta;
meta["version"] = 1;
meta["language"] = "Solidity";
meta["compiler"]["version"] = VersionString;
meta["compiler"]["version"] = VersionStringStrict;
meta["sources"] = Json::objectValue;
for (auto const& s: m_sources)