![]() |
PRCYCoin
2.0.0.7rc1
P2P Digital Currency
|
#include "base58.h"#include "clientversion.h"#include "httpserver.h"#include "init.h"#include "main.h"#include "masternode-sync.h"#include "net.h"#include "netbase.h"#include "rpc/server.h"#include "timedata.h"#include "util.h"#include <stdint.h>#include <univalue.h>#include <boost/assign/list_of.hpp>Go to the source code of this file.
Functions | |
| UniValue | getinfo (const UniValue ¶ms, bool fHelp) |
| UniValue | getversion (const UniValue ¶ms, bool fHelp) |
| UniValue | mnsync (const UniValue ¶ms, bool fHelp) |
| UniValue | validateaddress (const UniValue ¶ms, bool fHelp) |
| UniValue | validatestealthaddress (const UniValue ¶ms, bool fHelp) |
| CScript | _createmultisig_redeemScript (const UniValue ¶ms) |
| Used by addmultisigaddress / createmultisig: More... | |
| UniValue | createmultisig (const UniValue ¶ms, bool fHelp) |
| UniValue | verifymessage (const UniValue ¶ms, bool fHelp) |
| UniValue | setmocktime (const UniValue ¶ms, bool fHelp) |
| void | EnableOrDisableLogCategories (UniValue cats, bool enable) |
| UniValue | logging (const UniValue ¶ms, bool fHelp) |
| void EnableOrDisableLogCategories | ( | UniValue | cats, |
| bool | enable | ||
| ) |
getinfo exists for backwards-compatibility only. It combines information from wildly different sources in the program, which is a mess, and is thus planned to be deprecated eventually.Based on the source of the information, new information should be added to:
getblockchaininfo,getnetworkinfo orgetwalletinfoOr alternatively, create a specific query method for the information.
Definition at line 45 of file misc.cpp.
1.8.17