diff --git a/README.md b/README.md index b413b1f16..c785a3baf 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Dependencies ``` #The following packages are needed: -sudo apt-get install build-essential pkg-config libcurl-gnutls-dev libc6-dev m4 g++-multilib autoconf libtool ncurses-dev unzip git python zlib1g-dev wget bsdmainutils automake libboost-all-dev libssl-dev libprotobuf-dev protobuf-compiler libqt4-dev libqrencode-dev libdb++-dev ntp ntpdate +sudo apt-get install build-essential pkg-config libcurl-gnutls-dev libc6-dev libevent-dev m4 g++-multilib autoconf libtool ncurses-dev unzip git python zlib1g-dev wget bsdmainutils automake libboost-all-dev libssl-dev libprotobuf-dev protobuf-compiler libqt4-dev libqrencode-dev libdb++-dev ntp ntpdate ``` Komodo diff --git a/src/rpcserver.h b/src/rpcserver.h index c94450609..f1eacb7bb 100644 --- a/src/rpcserver.h +++ b/src/rpcserver.h @@ -292,15 +292,15 @@ extern UniValue z_getoperationresult(const UniValue& params, bool fHelp); // in extern UniValue z_listoperationids(const UniValue& params, bool fHelp); // in rpcwallet.cpp extern UniValue z_validateaddress(const UniValue& params, bool fHelp); // in rpcmisc.cpp -extern json_spirit::Value notaries(const UniValue& params, bool fHelp); -extern json_spirit::Value minerids(const UniValue& params, bool fHelp); -extern json_spirit::Value kvsearch(const UniValue& params, bool fHelp); -extern json_spirit::Value kvupdate(const UniValue& params, bool fHelp); -extern json_spirit::Value paxprice(const UniValue& params, bool fHelp); -extern json_spirit::Value paxpending(const UniValue& params, bool fHelp); -extern json_spirit::Value paxprices(const UniValue& params, bool fHelp); -extern json_spirit::Value paxdeposit(const UniValue& params, bool fHelp); -extern json_spirit::Value paxwithdraw(const UniValue& params, bool fHelp); +extern UniValue notaries(const UniValue& params, bool fHelp); +extern UniValue minerids(const UniValue& params, bool fHelp); +extern UniValue kvsearch(const UniValue& params, bool fHelp); +extern UniValue kvupdate(const UniValue& params, bool fHelp); +extern UniValue paxprice(const UniValue& params, bool fHelp); +extern UniValue paxpending(const UniValue& params, bool fHelp); +extern UniValue paxprices(const UniValue& params, bool fHelp); +extern UniValue paxdeposit(const UniValue& params, bool fHelp); +extern UniValue paxwithdraw(const UniValue& params, bool fHelp); bool StartRPC(); void InterruptRPC();