mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-11 07:37:54 +00:00
rpc: update inline comments to refer to new file paths
This commit is contained in:
parent
a0eaff8a1d
commit
d13f65ebac
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
#
|
#
|
||||||
# Test RPC calls related to blockchain state. Tests correspond to code in
|
# Test RPC calls related to blockchain state. Tests correspond to code in
|
||||||
# rpcblockchain.cpp.
|
# rpc/blockchain.cpp.
|
||||||
#
|
#
|
||||||
|
|
||||||
from decimal import Decimal
|
from decimal import Decimal
|
||||||
|
@ -175,7 +175,7 @@ extern std::string HelpExampleRpc(const std::string& methodname, const std::stri
|
|||||||
|
|
||||||
extern void EnsureWalletIsUnlocked();
|
extern void EnsureWalletIsUnlocked();
|
||||||
|
|
||||||
extern UniValue getconnectioncount(const UniValue& params, bool fHelp); // in rpcnet.cpp
|
extern UniValue getconnectioncount(const UniValue& params, bool fHelp); // in rpc/net.cpp
|
||||||
extern UniValue getpeerinfo(const UniValue& params, bool fHelp);
|
extern UniValue getpeerinfo(const UniValue& params, bool fHelp);
|
||||||
extern UniValue ping(const UniValue& params, bool fHelp);
|
extern UniValue ping(const UniValue& params, bool fHelp);
|
||||||
extern UniValue addnode(const UniValue& params, bool fHelp);
|
extern UniValue addnode(const UniValue& params, bool fHelp);
|
||||||
@ -186,7 +186,7 @@ extern UniValue setban(const UniValue& params, bool fHelp);
|
|||||||
extern UniValue listbanned(const UniValue& params, bool fHelp);
|
extern UniValue listbanned(const UniValue& params, bool fHelp);
|
||||||
extern UniValue clearbanned(const UniValue& params, bool fHelp);
|
extern UniValue clearbanned(const UniValue& params, bool fHelp);
|
||||||
|
|
||||||
extern UniValue getgenerate(const UniValue& params, bool fHelp); // in rpcmining.cpp
|
extern UniValue getgenerate(const UniValue& params, bool fHelp); // in rpc/mining.cpp
|
||||||
extern UniValue setgenerate(const UniValue& params, bool fHelp);
|
extern UniValue setgenerate(const UniValue& params, bool fHelp);
|
||||||
extern UniValue generate(const UniValue& params, bool fHelp);
|
extern UniValue generate(const UniValue& params, bool fHelp);
|
||||||
extern UniValue getnetworkhashps(const UniValue& params, bool fHelp);
|
extern UniValue getnetworkhashps(const UniValue& params, bool fHelp);
|
||||||
@ -207,7 +207,7 @@ extern UniValue getblockchaininfo(const UniValue& params, bool fHelp);
|
|||||||
extern UniValue getnetworkinfo(const UniValue& params, bool fHelp);
|
extern UniValue getnetworkinfo(const UniValue& params, bool fHelp);
|
||||||
extern UniValue setmocktime(const UniValue& params, bool fHelp);
|
extern UniValue setmocktime(const UniValue& params, bool fHelp);
|
||||||
|
|
||||||
extern UniValue getrawtransaction(const UniValue& params, bool fHelp); // in rcprawtransaction.cpp
|
extern UniValue getrawtransaction(const UniValue& params, bool fHelp); // in rpc/rawtransaction.cpp
|
||||||
extern UniValue listunspent(const UniValue& params, bool fHelp);
|
extern UniValue listunspent(const UniValue& params, bool fHelp);
|
||||||
extern UniValue lockunspent(const UniValue& params, bool fHelp);
|
extern UniValue lockunspent(const UniValue& params, bool fHelp);
|
||||||
extern UniValue listlockunspent(const UniValue& params, bool fHelp);
|
extern UniValue listlockunspent(const UniValue& params, bool fHelp);
|
||||||
@ -219,7 +219,7 @@ extern UniValue sendrawtransaction(const UniValue& params, bool fHelp);
|
|||||||
extern UniValue gettxoutproof(const UniValue& params, bool fHelp);
|
extern UniValue gettxoutproof(const UniValue& params, bool fHelp);
|
||||||
extern UniValue verifytxoutproof(const UniValue& params, bool fHelp);
|
extern UniValue verifytxoutproof(const UniValue& params, bool fHelp);
|
||||||
|
|
||||||
extern UniValue getblockcount(const UniValue& params, bool fHelp); // in rpcblockchain.cpp
|
extern UniValue getblockcount(const UniValue& params, bool fHelp); // in rpc/blockchain.cpp
|
||||||
extern UniValue getbestblockhash(const UniValue& params, bool fHelp);
|
extern UniValue getbestblockhash(const UniValue& params, bool fHelp);
|
||||||
extern UniValue getdifficulty(const UniValue& params, bool fHelp);
|
extern UniValue getdifficulty(const UniValue& params, bool fHelp);
|
||||||
extern UniValue settxfee(const UniValue& params, bool fHelp);
|
extern UniValue settxfee(const UniValue& params, bool fHelp);
|
||||||
|
@ -1049,7 +1049,7 @@ UniValue sendmany(const UniValue& params, bool fHelp)
|
|||||||
return wtx.GetHash().GetHex();
|
return wtx.GetHash().GetHex();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Defined in rpcmisc.cpp
|
// Defined in rpc/misc.cpp
|
||||||
extern CScript _createmultisig_redeemScript(const UniValue& params);
|
extern CScript _createmultisig_redeemScript(const UniValue& params);
|
||||||
|
|
||||||
UniValue addmultisigaddress(const UniValue& params, bool fHelp)
|
UniValue addmultisigaddress(const UniValue& params, bool fHelp)
|
||||||
|
Loading…
Reference in New Issue
Block a user