mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #1735 from federicobond/fix-compilation
Fix compilation in OS X
This commit is contained in:
commit
5069c58a4b
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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>
|
||||||
|
Loading…
Reference in New Issue
Block a user