LCOV - code coverage report
Current view: top level - src/zmq - zmqabstractnotifier.cpp (source / functions) Coverage Total Hit
Test: total_coverage.info Lines: 86.7 % 15 13
Test Date: 2024-11-04 05:10:19 Functions: 75.0 % 8 6
Branches: 50.0 % 2 1

             Branch data     Line data    Source code
       1                 :             : // Copyright (c) 2015-2020 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                 :             : #include <zmq/zmqabstractnotifier.h>
       6                 :             : 
       7                 :             : #include <cassert>
       8                 :             : 
       9                 :             : const int CZMQAbstractNotifier::DEFAULT_ZMQ_SNDHWM;
      10                 :             : 
      11                 :          18 : CZMQAbstractNotifier::~CZMQAbstractNotifier()
      12                 :             : {
      13         [ -  + ]:          18 :     assert(!psocket);
      14                 :          18 : }
      15                 :             : 
      16                 :          43 : bool CZMQAbstractNotifier::NotifyBlock(const CBlockIndex * /*CBlockIndex*/)
      17                 :             : {
      18                 :          43 :     return true;
      19                 :             : }
      20                 :             : 
      21                 :         123 : bool CZMQAbstractNotifier::NotifyTransaction(const CTransaction &/*transaction*/)
      22                 :             : {
      23                 :         123 :     return true;
      24                 :             : }
      25                 :             : 
      26                 :          72 : bool CZMQAbstractNotifier::NotifyBlockConnect(const CBlockIndex * /*CBlockIndex*/)
      27                 :             : {
      28                 :          72 :     return true;
      29                 :             : }
      30                 :             : 
      31                 :           8 : bool CZMQAbstractNotifier::NotifyBlockDisconnect(const CBlockIndex * /*CBlockIndex*/)
      32                 :             : {
      33                 :           8 :     return true;
      34                 :             : }
      35                 :             : 
      36                 :          14 : bool CZMQAbstractNotifier::NotifyTransactionAcceptance(const CTransaction &/*transaction*/, uint64_t mempool_sequence)
      37                 :             : {
      38                 :          14 :     return true;
      39                 :             : }
      40                 :             : 
      41                 :           0 : bool CZMQAbstractNotifier::NotifyTransactionRemoval(const CTransaction &/*transaction*/, uint64_t mempool_sequence)
      42                 :             : {
      43                 :           0 :     return true;
      44                 :             : }
        

Generated by: LCOV version 2.0-1