diff options
author | MacroFake <falke.marco@gmail.com> | 2022-04-29 15:37:25 +0200 |
---|---|---|
committer | MacroFake <falke.marco@gmail.com> | 2022-04-29 16:25:06 +0200 |
commit | fa753abd7cffa05548ad5f21f2e8f9f6b06a7b04 (patch) | |
tree | 934f35f3a06b9c0974878c917eb16d89381a347e /src/rpc/register.h | |
parent | 26296eba3dc34043b025bda167386c47693705b5 (diff) |
rpc: Move fee estimation RPCs to separate file
Can be reviewed with --color-moved=dimmed-zebra --color-moved-ws=ignore-all-space
Diffstat (limited to 'src/rpc/register.h')
-rw-r--r-- | src/rpc/register.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/rpc/register.h b/src/rpc/register.h index f3dba08b6c..c67d8b893d 100644 --- a/src/rpc/register.h +++ b/src/rpc/register.h @@ -10,20 +10,21 @@ class CRPCTable; void RegisterBlockchainRPCCommands(CRPCTable &tableRPC); +void RegisterFeeRPCCommands(CRPCTable&); void RegisterMempoolRPCCommands(CRPCTable&); -void RegisterTxoutProofRPCCommands(CRPCTable&); void RegisterNetRPCCommands(CRPCTable &tableRPC); void RegisterMiscRPCCommands(CRPCTable &tableRPC); void RegisterMiningRPCCommands(CRPCTable &tableRPC); void RegisterRawTransactionRPCCommands(CRPCTable &tableRPC); void RegisterSignMessageRPCCommands(CRPCTable&); void RegisterSignerRPCCommands(CRPCTable &tableRPC); +void RegisterTxoutProofRPCCommands(CRPCTable&); static inline void RegisterAllCoreRPCCommands(CRPCTable &t) { RegisterBlockchainRPCCommands(t); + RegisterFeeRPCCommands(t); RegisterMempoolRPCCommands(t); - RegisterTxoutProofRPCCommands(t); RegisterNetRPCCommands(t); RegisterMiscRPCCommands(t); RegisterMiningRPCCommands(t); @@ -32,6 +33,7 @@ static inline void RegisterAllCoreRPCCommands(CRPCTable &t) #ifdef ENABLE_EXTERNAL_SIGNER RegisterSignerRPCCommands(t); #endif // ENABLE_EXTERNAL_SIGNER + RegisterTxoutProofRPCCommands(t); } #endif // BITCOIN_RPC_REGISTER_H |