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
commit 5069c58a4b
2 changed files with 2 additions and 1 deletions

View File

@ -207,7 +207,7 @@ void RPCSession::personal_unlockAccount(string const& _address, string const& _p
string RPCSession::personal_newAccount(string const& _password) string RPCSession::personal_newAccount(string const& _password)
{ {
string addr = rpcCall("personal_newAccount", { quote(_password) }).asString(); string addr = rpcCall("personal_newAccount", { quote(_password) }).asString();
BOOST_MESSAGE("Created account " + addr); BOOST_TEST_MESSAGE("Created account " + addr);
return addr; return addr;
} }

View File

@ -30,6 +30,7 @@
#include <json/value.h> #include <json/value.h>
#include <boost/noncopyable.hpp>
#include <boost/test/unit_test.hpp> #include <boost/test/unit_test.hpp>
#include <string> #include <string>