Merge pull request #1735 from federicobond/fix-compilation

Fix compilation in OS X
This commit is contained in:
chriseth
2017-03-06 12:24:55 +01:00
committed by GitHub
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -207,7 +207,7 @@ void RPCSession::personal_unlockAccount(string const& _address, string const& _p
string RPCSession::personal_newAccount(string const& _password)
{
string addr = rpcCall("personal_newAccount", { quote(_password) }).asString();
BOOST_MESSAGE("Created account " + addr);
BOOST_TEST_MESSAGE("Created account " + addr);
return addr;
}
+1
View File
@@ -30,6 +30,7 @@
#include <json/value.h>
#include <boost/noncopyable.hpp>
#include <boost/test/unit_test.hpp>
#include <string>