File tree Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -2347,6 +2347,8 @@ UniValue dumptxoutset(const JSONRPCRequest& request)
2347
2347
return result;
2348
2348
}
2349
2349
2350
+ void RegisterBlockchainRPCCommands (CRPCTable &t)
2351
+ {
2350
2352
// clang-format off
2351
2353
static const CRPCCommand commands[] =
2352
2354
{ // category name actor (function) argNames
@@ -2387,8 +2389,6 @@ static const CRPCCommand commands[] =
2387
2389
};
2388
2390
// clang-format on
2389
2391
2390
- void RegisterBlockchainRPCCommands (CRPCTable &t)
2391
- {
2392
2392
for (unsigned int vcidx = 0 ; vcidx < ARRAYLEN (commands); vcidx++)
2393
2393
t.appendCommand (commands[vcidx].name , &commands[vcidx]);
2394
2394
}
Original file line number Diff line number Diff line change @@ -1022,6 +1022,8 @@ static UniValue estimaterawfee(const JSONRPCRequest& request)
1022
1022
return result;
1023
1023
}
1024
1024
1025
+ void RegisterMiningRPCCommands (CRPCTable &t)
1026
+ {
1025
1027
// clang-format off
1026
1028
static const CRPCCommand commands[] =
1027
1029
{ // category name actor (function) argNames
@@ -1043,8 +1045,6 @@ static const CRPCCommand commands[] =
1043
1045
};
1044
1046
// clang-format on
1045
1047
1046
- void RegisterMiningRPCCommands (CRPCTable &t)
1047
- {
1048
1048
for (unsigned int vcidx = 0 ; vcidx < ARRAYLEN (commands); vcidx++)
1049
1049
t.appendCommand (commands[vcidx].name , &commands[vcidx]);
1050
1050
}
Original file line number Diff line number Diff line change @@ -589,6 +589,8 @@ static UniValue echo(const JSONRPCRequest& request)
589
589
return request.params ;
590
590
}
591
591
592
+ void RegisterMiscRPCCommands (CRPCTable &t)
593
+ {
592
594
// clang-format off
593
595
static const CRPCCommand commands[] =
594
596
{ // category name actor (function) argNames
@@ -610,8 +612,6 @@ static const CRPCCommand commands[] =
610
612
};
611
613
// clang-format on
612
614
613
- void RegisterMiscRPCCommands (CRPCTable &t)
614
- {
615
615
for (unsigned int vcidx = 0 ; vcidx < ARRAYLEN (commands); vcidx++)
616
616
t.appendCommand (commands[vcidx].name , &commands[vcidx]);
617
617
}
Original file line number Diff line number Diff line change @@ -760,6 +760,8 @@ static UniValue getnodeaddresses(const JSONRPCRequest& request)
760
760
return ret;
761
761
}
762
762
763
+ void RegisterNetRPCCommands (CRPCTable &t)
764
+ {
763
765
// clang-format off
764
766
static const CRPCCommand commands[] =
765
767
{ // category name actor (function) argNames
@@ -780,8 +782,6 @@ static const CRPCCommand commands[] =
780
782
};
781
783
// clang-format on
782
784
783
- void RegisterNetRPCCommands (CRPCTable &t)
784
- {
785
785
for (unsigned int vcidx = 0 ; vcidx < ARRAYLEN (commands); vcidx++)
786
786
t.appendCommand (commands[vcidx].name , &commands[vcidx]);
787
787
}
Original file line number Diff line number Diff line change @@ -1813,6 +1813,8 @@ UniValue analyzepsbt(const JSONRPCRequest& request)
1813
1813
return result;
1814
1814
}
1815
1815
1816
+ void RegisterRawTransactionRPCCommands (CRPCTable &t)
1817
+ {
1816
1818
// clang-format off
1817
1819
static const CRPCCommand commands[] =
1818
1820
{ // category name actor (function) argNames
@@ -1839,8 +1841,6 @@ static const CRPCCommand commands[] =
1839
1841
};
1840
1842
// clang-format on
1841
1843
1842
- void RegisterRawTransactionRPCCommands (CRPCTable &t)
1843
- {
1844
1844
for (unsigned int vcidx = 0 ; vcidx < ARRAYLEN (commands); vcidx++)
1845
1845
t.appendCommand (commands[vcidx].name , &commands[vcidx]);
1846
1846
}
Original file line number Diff line number Diff line change @@ -4242,6 +4242,8 @@ UniValue importprunedfunds(const JSONRPCRequest& request);
4242
4242
UniValue removeprunedfunds (const JSONRPCRequest& request);
4243
4243
UniValue importmulti (const JSONRPCRequest& request);
4244
4244
4245
+ void RegisterWalletRPCCommands (interfaces::Chain& chain, std::vector<std::unique_ptr<interfaces::Handler>>& handlers)
4246
+ {
4245
4247
// clang-format off
4246
4248
static const CRPCCommand commands[] =
4247
4249
{ // category name actor (function) argNames
@@ -4305,8 +4307,6 @@ static const CRPCCommand commands[] =
4305
4307
};
4306
4308
// clang-format on
4307
4309
4308
- void RegisterWalletRPCCommands (interfaces::Chain& chain, std::vector<std::unique_ptr<interfaces::Handler>>& handlers)
4309
- {
4310
4310
for (unsigned int vcidx = 0 ; vcidx < ARRAYLEN (commands); vcidx++)
4311
4311
handlers.emplace_back (chain.handleRpc (commands[vcidx]));
4312
4312
}
You can’t perform that action at this time.
0 commit comments