File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -382,7 +382,7 @@ libbitcoin_node_a_SOURCES = \
382
382
rpc/fees.cpp \
383
383
rpc/mempool.cpp \
384
384
rpc/mining.cpp \
385
- rpc/misc .cpp \
385
+ rpc/node .cpp \
386
386
rpc/net.cpp \
387
387
rpc/output_script.cpp \
388
388
rpc/rawtransaction.cpp \
Original file line number Diff line number Diff line change @@ -419,7 +419,7 @@ static RPCHelpMan getindexinfo()
419
419
};
420
420
}
421
421
422
- void RegisterMiscRPCCommands (CRPCTable& t)
422
+ void RegisterNodeRPCCommands (CRPCTable& t)
423
423
{
424
424
static const CRPCCommand commands[]{
425
425
{" control" , &getmemoryinfo},
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ void RegisterBlockchainRPCCommands(CRPCTable &tableRPC);
13
13
void RegisterFeeRPCCommands (CRPCTable&);
14
14
void RegisterMempoolRPCCommands (CRPCTable&);
15
15
void RegisterMiningRPCCommands (CRPCTable &tableRPC);
16
- void RegisterMiscRPCCommands (CRPCTable&);
16
+ void RegisterNodeRPCCommands (CRPCTable&);
17
17
void RegisterNetRPCCommands (CRPCTable&);
18
18
void RegisterOutputScriptRPCCommands (CRPCTable&);
19
19
void RegisterRawTransactionRPCCommands (CRPCTable &tableRPC);
@@ -27,7 +27,7 @@ static inline void RegisterAllCoreRPCCommands(CRPCTable &t)
27
27
RegisterFeeRPCCommands (t);
28
28
RegisterMempoolRPCCommands (t);
29
29
RegisterMiningRPCCommands (t);
30
- RegisterMiscRPCCommands (t);
30
+ RegisterNodeRPCCommands (t);
31
31
RegisterNetRPCCommands (t);
32
32
RegisterOutputScriptRPCCommands (t);
33
33
RegisterRawTransactionRPCCommands (t);
You can’t perform that action at this time.
0 commit comments