LCOV - code coverage report
Current view: top level - src/wallet - transaction.cpp (source / functions) Hit Total Coverage
Test: coverage.lcov Lines: 14 14 100.0 %
Date: 2022-04-21 14:51:19 Functions: 3 3 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: 6 6 100.0 %

           Branch data     Line data    Source code
#       1                 :            : // Copyright (c) 2021 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 <wallet/transaction.h>
#       6                 :            : 
#       7                 :            : namespace wallet {
#       8                 :            : bool CWalletTx::IsEquivalentTo(const CWalletTx& _tx) const
#       9                 :       3411 : {
#      10                 :       3411 :         CMutableTransaction tx1 {*this->tx};
#      11                 :       3411 :         CMutableTransaction tx2 {*_tx.tx};
#      12         [ +  + ]:       3436 :         for (auto& txin : tx1.vin) txin.scriptSig = CScript();
#      13         [ +  + ]:       3447 :         for (auto& txin : tx2.vin) txin.scriptSig = CScript();
#      14                 :       3411 :         return CTransaction(tx1) == CTransaction(tx2);
#      15                 :       3411 : }
#      16                 :            : 
#      17                 :            : bool CWalletTx::InMempool() const
#      18                 :     309299 : {
#      19                 :     309299 :     return state<TxStateInMempool>();
#      20                 :     309299 : }
#      21                 :            : 
#      22                 :            : int64_t CWalletTx::GetTxTime() const
#      23                 :     456875 : {
#      24                 :     456875 :     int64_t n = nTimeSmart;
#      25         [ +  + ]:     456875 :     return n ? n : nTimeReceived;
#      26                 :     456875 : }
#      27                 :            : } // namespace wallet

Generated by: LCOV version 0-eol-96201-ge66f56f4af6a