Skip to content
This repository has been archived by the owner on Oct 28, 2021. It is now read-only.

Commit

Permalink
Merge pull request #5527 from ethereum/rembin
Browse files Browse the repository at this point in the history
remove prepareBinaryenVersionString
  • Loading branch information
winsvega authored Mar 25, 2019
2 parents 2d55d5c + 96a117d commit ad6f54f
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
6 changes: 0 additions & 6 deletions test/tools/libtesteth/TestHelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -637,12 +637,6 @@ string prepareLLLCVersionString()
return "Error getting LLLC Version";
}

#define STR(X) #X
string prepareBinaryenVersionString()
{
return STR(BINARYEN_VERSION);
}

void copyFile(fs::path const& _source, fs::path const& _destination)
{
fs::ifstream src(_source, ios::binary);
Expand Down
1 change: 0 additions & 1 deletion test/tools/libtesteth/TestHelper.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ class ZeroGasPricer: public eth::GasPricer
// helping functions
std::string prepareVersionString();
std::string prepareLLLCVersionString();
std::string prepareBinaryenVersionString();
std::vector<boost::filesystem::path> getFiles(boost::filesystem::path const& _dirPath, std::set<std::string> _extentionMask, std::string const& _particularFile = {});
std::string netIdToString(eth::Network _netId);
eth::Network stringToNetId(std::string const& _netname);
Expand Down
1 change: 0 additions & 1 deletion test/tools/libtesteth/TestSuite.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ void addClientInfo(json_spirit::mValue& _v, fs::path const& _testSource, h256 co

clientinfo["filledwith"] = test::prepareVersionString();
clientinfo["lllcversion"] = test::prepareLLLCVersionString();
clientinfo["binaryenVersion"] = test::prepareBinaryenVersionString();
clientinfo["source"] = _testSource.string();
clientinfo["sourceHash"] = toString(_testSourceHash);
clientinfo["comment"] = comment;
Expand Down

0 comments on commit ad6f54f

Please sign in to comment.