aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/register.h
diff options
context:
space:
mode:
authorMacroFake <falke.marco@gmail.com>2022-04-28 10:30:40 +0200
committerMacroFake <falke.marco@gmail.com>2022-04-28 11:19:29 +0200
commitfa60169811d6991a116bd37e1ff58049d2beee77 (patch)
tree5b5c1ee01c430bf8cd4c5f4f0ec21e2178b4bbd6 /src/rpc/register.h
parentfa9425177e6be2c53fb5c1333636fa4d678ab401 (diff)
rpc: Move signmessage RPC util to new 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.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rpc/register.h b/src/rpc/register.h
index 5a604ad428..f3dba08b6c 100644
--- a/src/rpc/register.h
+++ b/src/rpc/register.h
@@ -16,6 +16,7 @@ void RegisterNetRPCCommands(CRPCTable &tableRPC);
void RegisterMiscRPCCommands(CRPCTable &tableRPC);
void RegisterMiningRPCCommands(CRPCTable &tableRPC);
void RegisterRawTransactionRPCCommands(CRPCTable &tableRPC);
+void RegisterSignMessageRPCCommands(CRPCTable&);
void RegisterSignerRPCCommands(CRPCTable &tableRPC);
static inline void RegisterAllCoreRPCCommands(CRPCTable &t)
@@ -27,6 +28,7 @@ static inline void RegisterAllCoreRPCCommands(CRPCTable &t)
RegisterMiscRPCCommands(t);
RegisterMiningRPCCommands(t);
RegisterRawTransactionRPCCommands(t);
+ RegisterSignMessageRPCCommands(t);
#ifdef ENABLE_EXTERNAL_SIGNER
RegisterSignerRPCCommands(t);
#endif // ENABLE_EXTERNAL_SIGNER