LCOV - code coverage report
Current view: top level - src/rpc - register.h (source / functions) Hit Total Coverage
Test: coverage.lcov Lines: 7 7 100.0 %
Date: 2021-06-29 14:35:33 Functions: 2 2 100.0 %
Legend: Modified by patch:
Lines: hit not hit | Branches: + taken - not taken # not executed

Not modified by patch:
Lines: hit not hit | Branches: + taken - not taken # not executed
Branches: 0 0 -

           Branch data     Line data    Source code
#       1                 :            : // Copyright (c) 2009-2018 The Bitcoin Core developers
#       2                 :            : // Distributed under the MIT software license, see the accompanying
#       3                 :            : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
#       4                 :            : 
#       5                 :            : #ifndef BITCOIN_RPC_REGISTER_H
#       6                 :            : #define BITCOIN_RPC_REGISTER_H
#       7                 :            : 
#       8                 :            : /** These are in one header file to avoid creating tons of single-function
#       9                 :            :  * headers for everything under src/rpc/ */
#      10                 :            : class CRPCTable;
#      11                 :            : 
#      12                 :            : /** Register block chain RPC commands */
#      13                 :            : void RegisterBlockchainRPCCommands(CRPCTable &tableRPC);
#      14                 :            : /** Register P2P networking RPC commands */
#      15                 :            : void RegisterNetRPCCommands(CRPCTable &tableRPC);
#      16                 :            : /** Register miscellaneous RPC commands */
#      17                 :            : void RegisterMiscRPCCommands(CRPCTable &tableRPC);
#      18                 :            : /** Register mining RPC commands */
#      19                 :            : void RegisterMiningRPCCommands(CRPCTable &tableRPC);
#      20                 :            : /** Register raw transaction RPC commands */
#      21                 :            : void RegisterRawTransactionRPCCommands(CRPCTable &tableRPC);
#      22                 :            : /** Register raw transaction RPC commands */
#      23                 :            : void RegisterSignerRPCCommands(CRPCTable &tableRPC);
#      24                 :            : 
#      25                 :            : static inline void RegisterAllCoreRPCCommands(CRPCTable &t)
#      26                 :        816 : {
#      27                 :        816 :     RegisterBlockchainRPCCommands(t);
#      28                 :        816 :     RegisterNetRPCCommands(t);
#      29                 :        816 :     RegisterMiscRPCCommands(t);
#      30                 :        816 :     RegisterMiningRPCCommands(t);
#      31                 :        816 :     RegisterRawTransactionRPCCommands(t);
#      32                 :            : #ifdef ENABLE_EXTERNAL_SIGNER
#      33                 :            :     RegisterSignerRPCCommands(t);
#      34                 :            : #endif // ENABLE_EXTERNAL_SIGNER
#      35                 :        816 : }
#      36                 :            : 
#      37                 :            : #endif // BITCOIN_RPC_REGISTER_H

Generated by: LCOV version 1.14