Replace deprecated BOOST_MESSAGE with BOOST_TEST_MESSAGE

This commit is contained in:
Federico Bond 2017-03-03 11:47:05 -03:00
parent 6bfd894f46
commit 818083e705

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;
}