diff options
author | MacroFake <falke.marco@gmail.com> | 2022-04-28 10:30:40 +0200 |
---|---|---|
committer | MacroFake <falke.marco@gmail.com> | 2022-04-28 11:19:29 +0200 |
commit | fa60169811d6991a116bd37e1ff58049d2beee77 (patch) | |
tree | 5b5c1ee01c430bf8cd4c5f4f0ec21e2178b4bbd6 /src/rpc/register.h | |
parent | fa9425177e6be2c53fb5c1333636fa4d678ab401 (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.h | 2 |
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 |