LCOV - code coverage report
Current view: top level - src/interfaces - chain.h (source / functions) Coverage Total Hit
Test: test_bitcoin_coverage.info Lines: 65.2 % 23 15
Test Date: 2024-08-28 04:44:32 Functions: 0.0 % 9 0
Branches: 47.6 % 42 20

             Branch data     Line data    Source code
       1                 :             : // Copyright (c) 2018-2022 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_INTERFACES_CHAIN_H
       6                 :             : #define BITCOIN_INTERFACES_CHAIN_H
       7                 :             : 
       8                 :             : #include <blockfilter.h>
       9                 :             : #include <common/settings.h>
      10                 :             : #include <primitives/transaction.h> // For CTransactionRef
      11                 :             : #include <util/result.h>
      12                 :             : 
      13                 :             : #include <functional>
      14                 :             : #include <memory>
      15                 :             : #include <optional>
      16                 :             : #include <stddef.h>
      17                 :             : #include <stdint.h>
      18                 :             : #include <string>
      19                 :             : #include <vector>
      20                 :             : 
      21                 :             : class ArgsManager;
      22                 :             : class CBlock;
      23                 :             : class CBlockUndo;
      24                 :             : class CFeeRate;
      25                 :             : class CRPCCommand;
      26                 :             : class CScheduler;
      27                 :             : class Coin;
      28                 :             : class uint256;
      29                 :             : enum class MemPoolRemovalReason;
      30                 :             : enum class RBFTransactionState;
      31                 :             : enum class ChainstateRole;
      32                 :             : struct bilingual_str;
      33                 :             : struct CBlockLocator;
      34                 :             : struct FeeCalculation;
      35                 :             : namespace node {
      36                 :             : struct NodeContext;
      37                 :             : } // namespace node
      38                 :             : 
      39                 :             : namespace interfaces {
      40                 :             : 
      41                 :             : class Handler;
      42                 :             : class Wallet;
      43                 :             : 
      44                 :             : //! Hash/height pair to help track and identify blocks.
      45                 :             : struct BlockKey {
      46                 :             :     uint256 hash;
      47                 :             :     int height = -1;
      48                 :             : };
      49                 :             : 
      50                 :             : //! Helper for findBlock to selectively return pieces of block data. If block is
      51                 :             : //! found, data will be returned by setting specified output variables. If block
      52                 :             : //! is not found, output variables will keep their previous values.
      53         [ +  - ]:        1506 : class FoundBlock
      54                 :             : {
      55                 :             : public:
      56 [ -  - ][ +  -  :           5 :     FoundBlock& hash(uint256& hash) { m_hash = &hash; return *this; }
             +  -  +  - ]
      57 [ +  - ][ +  -  :           8 :     FoundBlock& height(int& height) { m_height = &height; return *this; }
          +  -  +  -  +  
                      - ]
      58         [ +  - ]:          16 :     FoundBlock& time(int64_t& time) { m_time = &time; return *this; }
      59         [ +  - ]:         423 :     FoundBlock& maxTime(int64_t& max_time) { m_max_time = &max_time; return *this; }
      60         [ +  - ]:           2 :     FoundBlock& mtpTime(int64_t& mtp_time) { m_mtp_time = &mtp_time; return *this; }
      61                 :             :     //! Return whether block is in the active (most-work) chain.
      62                 :         529 :     FoundBlock& inActiveChain(bool& in_active_chain) { m_in_active_chain = &in_active_chain; return *this; }
      63                 :             :     //! Return locator if block is in the active chain.
      64         [ +  - ]:          10 :     FoundBlock& locator(CBlockLocator& locator) { m_locator = &locator; return *this; }
      65                 :             :     //! Return next block in the active chain if current block is in the active chain.
      66         [ +  - ]:         528 :     FoundBlock& nextBlock(const FoundBlock& next_block) { m_next_block = &next_block; return *this; }
           [ +  -  +  - ]
      67                 :             :     //! Read block data from disk. If the block exists but doesn't have data
      68                 :             :     //! (for example due to pruning), the CBlock variable will be set to null.
      69         [ +  - ]:         527 :     FoundBlock& data(CBlock& data) { m_data = &data; return *this; }
      70                 :             : 
      71                 :             :     uint256* m_hash = nullptr;
      72                 :             :     int* m_height = nullptr;
      73                 :             :     int64_t* m_time = nullptr;
      74                 :             :     int64_t* m_max_time = nullptr;
      75                 :             :     int64_t* m_mtp_time = nullptr;
      76                 :             :     bool* m_in_active_chain = nullptr;
      77                 :             :     CBlockLocator* m_locator = nullptr;
      78                 :             :     const FoundBlock* m_next_block = nullptr;
      79                 :             :     CBlock* m_data = nullptr;
      80                 :             :     mutable bool found = false;
      81                 :             : };
      82                 :             : 
      83                 :             : //! Block data sent with blockConnected, blockDisconnected notifications.
      84                 :             : struct BlockInfo {
      85                 :             :     const uint256& hash;
      86                 :             :     const uint256* prev_hash = nullptr;
      87                 :             :     int height = -1;
      88                 :             :     int file_number = -1;
      89                 :             :     unsigned data_pos = 0;
      90                 :             :     const CBlock* data = nullptr;
      91                 :             :     const CBlockUndo* undo_data = nullptr;
      92                 :             :     // The maximum time in the chain up to and including this block.
      93                 :             :     // A timestamp that can only move forward.
      94                 :             :     unsigned int chain_time_max{0};
      95                 :             : 
      96         [ +  - ]:         431 :     BlockInfo(const uint256& hash LIFETIMEBOUND) : hash(hash) {}
      97                 :             : };
      98                 :             : 
      99                 :             : //! The action to be taken after updating a settings value.
     100                 :             : //! WRITE indicates that the updated value must be written to disk,
     101                 :             : //! while SKIP_WRITE indicates that the change will be kept in memory-only
     102                 :             : //! without persisting it.
     103                 :             : enum class SettingsAction {
     104                 :             :     WRITE,
     105                 :             :     SKIP_WRITE
     106                 :             : };
     107                 :             : 
     108                 :             : using SettingsUpdate = std::function<std::optional<interfaces::SettingsAction>(common::SettingsValue&)>;
     109                 :             : 
     110                 :             : //! Interface giving clients (wallet processes, maybe other analysis tools in
     111                 :             : //! the future) ability to access to the chain state, receive notifications,
     112                 :             : //! estimate fees, and submit transactions.
     113                 :             : //!
     114                 :             : //! TODO: Current chain methods are too low level, exposing too much of the
     115                 :             : //! internal workings of the bitcoin node, and not being very convenient to use.
     116                 :             : //! Chain methods should be cleaned up and simplified over time. Examples:
     117                 :             : //!
     118                 :             : //! * The initMessages() and showProgress() methods which the wallet uses to send
     119                 :             : //!   notifications to the GUI should go away when GUI and wallet can directly
     120                 :             : //!   communicate with each other without going through the node
     121                 :             : //!   (https://github.com/bitcoin/bitcoin/pull/15288#discussion_r253321096).
     122                 :             : //!
     123                 :             : //! * The handleRpc, registerRpcs, rpcEnableDeprecated methods and other RPC
     124                 :             : //!   methods can go away if wallets listen for HTTP requests on their own
     125                 :             : //!   ports instead of registering to handle requests on the node HTTP port.
     126                 :             : //!
     127                 :             : //! * Move fee estimation queries to an asynchronous interface and let the
     128                 :             : //!   wallet cache it, fee estimation being driven by node mempool, wallet
     129                 :             : //!   should be the consumer.
     130                 :             : //!
     131                 :             : //! * `guessVerificationProgress` and similar methods can go away if rescan
     132                 :             : //!   logic moves out of the wallet, and the wallet just requests scans from the
     133                 :             : //!   node (https://github.com/bitcoin/bitcoin/issues/11756)
     134                 :         597 : class Chain
     135                 :             : {
     136                 :             : public:
     137                 :             :     virtual ~Chain() = default;
     138                 :             : 
     139                 :             :     //! Get current chain height, not including genesis block (returns 0 if
     140                 :             :     //! chain only contains genesis block, nullopt if chain does not contain
     141                 :             :     //! any blocks)
     142                 :             :     virtual std::optional<int> getHeight() = 0;
     143                 :             : 
     144                 :             :     //! Get block hash. Height must be valid or this function will abort.
     145                 :             :     virtual uint256 getBlockHash(int height) = 0;
     146                 :             : 
     147                 :             :     //! Check that the block is available on disk (i.e. has not been
     148                 :             :     //! pruned), and contains transactions.
     149                 :             :     virtual bool haveBlockOnDisk(int height) = 0;
     150                 :             : 
     151                 :             :     //! Get locator for the current chain tip.
     152                 :             :     virtual CBlockLocator getTipLocator() = 0;
     153                 :             : 
     154                 :             :     //! Return a locator that refers to a block in the active chain.
     155                 :             :     //! If specified block is not in the active chain, return locator for the latest ancestor that is in the chain.
     156                 :             :     virtual CBlockLocator getActiveChainLocator(const uint256& block_hash) = 0;
     157                 :             : 
     158                 :             :     //! Return height of the highest block on chain in common with the locator,
     159                 :             :     //! which will either be the original block used to create the locator,
     160                 :             :     //! or one of its ancestors.
     161                 :             :     virtual std::optional<int> findLocatorFork(const CBlockLocator& locator) = 0;
     162                 :             : 
     163                 :             :     //! Returns whether a block filter index is available.
     164                 :             :     virtual bool hasBlockFilterIndex(BlockFilterType filter_type) = 0;
     165                 :             : 
     166                 :             :     //! Returns whether any of the elements match the block via a BIP 157 block filter
     167                 :             :     //! or std::nullopt if the block filter for this block couldn't be found.
     168                 :             :     virtual std::optional<bool> blockFilterMatchesAny(BlockFilterType filter_type, const uint256& block_hash, const GCSFilter::ElementSet& filter_set) = 0;
     169                 :             : 
     170                 :             :     //! Return whether node has the block and optionally return block metadata
     171                 :             :     //! or contents.
     172                 :             :     virtual bool findBlock(const uint256& hash, const FoundBlock& block={}) = 0;
     173                 :             : 
     174                 :             :     //! Find first block in the chain with timestamp >= the given time
     175                 :             :     //! and height >= than the given height, return false if there is no block
     176                 :             :     //! with a high enough timestamp and height. Optionally return block
     177                 :             :     //! information.
     178                 :             :     virtual bool findFirstBlockWithTimeAndHeight(int64_t min_time, int min_height, const FoundBlock& block={}) = 0;
     179                 :             : 
     180                 :             :     //! Find ancestor of block at specified height and optionally return
     181                 :             :     //! ancestor information.
     182                 :             :     virtual bool findAncestorByHeight(const uint256& block_hash, int ancestor_height, const FoundBlock& ancestor_out={}) = 0;
     183                 :             : 
     184                 :             :     //! Return whether block descends from a specified ancestor, and
     185                 :             :     //! optionally return ancestor information.
     186                 :             :     virtual bool findAncestorByHash(const uint256& block_hash,
     187                 :             :         const uint256& ancestor_hash,
     188                 :             :         const FoundBlock& ancestor_out={}) = 0;
     189                 :             : 
     190                 :             :     //! Find most recent common ancestor between two blocks and optionally
     191                 :             :     //! return block information.
     192                 :             :     virtual bool findCommonAncestor(const uint256& block_hash1,
     193                 :             :         const uint256& block_hash2,
     194                 :             :         const FoundBlock& ancestor_out={},
     195                 :             :         const FoundBlock& block1_out={},
     196                 :             :         const FoundBlock& block2_out={}) = 0;
     197                 :             : 
     198                 :             :     //! Look up unspent output information. Returns coins in the mempool and in
     199                 :             :     //! the current chain UTXO set. Iterates through all the keys in the map and
     200                 :             :     //! populates the values.
     201                 :             :     virtual void findCoins(std::map<COutPoint, Coin>& coins) = 0;
     202                 :             : 
     203                 :             :     //! Estimate fraction of total transactions verified if blocks up to
     204                 :             :     //! the specified block hash are verified.
     205                 :             :     virtual double guessVerificationProgress(const uint256& block_hash) = 0;
     206                 :             : 
     207                 :             :     //! Return true if data is available for all blocks in the specified range
     208                 :             :     //! of blocks. This checks all blocks that are ancestors of block_hash in
     209                 :             :     //! the height range from min_height to max_height, inclusive.
     210                 :             :     virtual bool hasBlocks(const uint256& block_hash, int min_height = 0, std::optional<int> max_height = {}) = 0;
     211                 :             : 
     212                 :             :     //! Check if transaction is RBF opt in.
     213                 :             :     virtual RBFTransactionState isRBFOptIn(const CTransaction& tx) = 0;
     214                 :             : 
     215                 :             :     //! Check if transaction is in mempool.
     216                 :             :     virtual bool isInMempool(const uint256& txid) = 0;
     217                 :             : 
     218                 :             :     //! Check if transaction has descendants in mempool.
     219                 :             :     virtual bool hasDescendantsInMempool(const uint256& txid) = 0;
     220                 :             : 
     221                 :             :     //! Transaction is added to memory pool, if the transaction fee is below the
     222                 :             :     //! amount specified by max_tx_fee, and broadcast to all peers if relay is set to true.
     223                 :             :     //! Return false if the transaction could not be added due to the fee or for another reason.
     224                 :             :     virtual bool broadcastTransaction(const CTransactionRef& tx,
     225                 :             :         const CAmount& max_tx_fee,
     226                 :             :         bool relay,
     227                 :             :         std::string& err_string) = 0;
     228                 :             : 
     229                 :             :     //! Calculate mempool ancestor and descendant counts for the given transaction.
     230                 :             :     virtual void getTransactionAncestry(const uint256& txid, size_t& ancestors, size_t& descendants, size_t* ancestorsize = nullptr, CAmount* ancestorfees = nullptr) = 0;
     231                 :             : 
     232                 :             :     //! For each outpoint, calculate the fee-bumping cost to spend this outpoint at the specified
     233                 :             :     //  feerate, including bumping its ancestors. For example, if the target feerate is 10sat/vbyte
     234                 :             :     //  and this outpoint refers to a mempool transaction at 3sat/vbyte, the bump fee includes the
     235                 :             :     //  cost to bump the mempool transaction to 10sat/vbyte (i.e. 7 * mempooltx.vsize). If that
     236                 :             :     //  transaction also has, say, an unconfirmed parent with a feerate of 1sat/vbyte, the bump fee
     237                 :             :     //  includes the cost to bump the parent (i.e. 9 * parentmempooltx.vsize).
     238                 :             :     //
     239                 :             :     //  If the outpoint comes from an unconfirmed transaction that is already above the target
     240                 :             :     //  feerate or bumped by its descendant(s) already, it does not need to be bumped. Its bump fee
     241                 :             :     //  is 0. Likewise, if any of the transaction's ancestors are already bumped by a transaction
     242                 :             :     //  in our mempool, they are not included in the transaction's bump fee.
     243                 :             :     //
     244                 :             :     //  Also supported is bump-fee calculation in the case of replacements. If an outpoint
     245                 :             :     //  conflicts with another transaction in the mempool, it is assumed that the goal is to replace
     246                 :             :     //  that transaction. As such, the calculation will exclude the to-be-replaced transaction, but
     247                 :             :     //  will include the fee-bumping cost. If bump fees of descendants of the to-be-replaced
     248                 :             :     //  transaction are requested, the value will be 0. Fee-related RBF rules are not included as
     249                 :             :     //  they are logically distinct.
     250                 :             :     //
     251                 :             :     //  Any outpoints that are otherwise unavailable from the mempool (e.g. UTXOs from confirmed
     252                 :             :     //  transactions or transactions not yet broadcast by the wallet) are given a bump fee of 0.
     253                 :             :     //
     254                 :             :     //  If multiple outpoints come from the same transaction (which would be very rare because
     255                 :             :     //  it means that one transaction has multiple change outputs or paid the same wallet using multiple
     256                 :             :     //  outputs in the same transaction) or have shared ancestry, the bump fees are calculated
     257                 :             :     //  independently, i.e. as if only one of them is spent. This may result in double-fee-bumping. This
     258                 :             :     //  caveat can be rectified per use of the sister-function CalculateCombinedBumpFee(…).
     259                 :             :     virtual std::map<COutPoint, CAmount> calculateIndividualBumpFees(const std::vector<COutPoint>& outpoints, const CFeeRate& target_feerate) = 0;
     260                 :             : 
     261                 :             :     //! Calculate the combined bump fee for an input set per the same strategy
     262                 :             :     //  as in CalculateIndividualBumpFees(…).
     263                 :             :     //  Unlike CalculateIndividualBumpFees(…), this does not return individual
     264                 :             :     //  bump fees per outpoint, but a single bump fee for the shared ancestry.
     265                 :             :     //  The combined bump fee may be used to correct overestimation due to
     266                 :             :     //  shared ancestry by multiple UTXOs after coin selection.
     267                 :             :     virtual std::optional<CAmount> calculateCombinedBumpFee(const std::vector<COutPoint>& outpoints, const CFeeRate& target_feerate) = 0;
     268                 :             : 
     269                 :             :     //! Get the node's package limits.
     270                 :             :     //! Currently only returns the ancestor and descendant count limits, but could be enhanced to
     271                 :             :     //! return more policy settings.
     272                 :             :     virtual void getPackageLimits(unsigned int& limit_ancestor_count, unsigned int& limit_descendant_count) = 0;
     273                 :             : 
     274                 :             :     //! Check if transaction will pass the mempool's chain limits.
     275                 :             :     virtual util::Result<void> checkChainLimits(const CTransactionRef& tx) = 0;
     276                 :             : 
     277                 :             :     //! Estimate smart fee.
     278                 :             :     virtual CFeeRate estimateSmartFee(int num_blocks, bool conservative, FeeCalculation* calc = nullptr) = 0;
     279                 :             : 
     280                 :             :     //! Fee estimator max target.
     281                 :             :     virtual unsigned int estimateMaxBlocks() = 0;
     282                 :             : 
     283                 :             :     //! Mempool minimum fee.
     284                 :             :     virtual CFeeRate mempoolMinFee() = 0;
     285                 :             : 
     286                 :             :     //! Relay current minimum fee (from -minrelaytxfee and -incrementalrelayfee settings).
     287                 :             :     virtual CFeeRate relayMinFee() = 0;
     288                 :             : 
     289                 :             :     //! Relay incremental fee setting (-incrementalrelayfee), reflecting cost of relay.
     290                 :             :     virtual CFeeRate relayIncrementalFee() = 0;
     291                 :             : 
     292                 :             :     //! Relay dust fee setting (-dustrelayfee), reflecting lowest rate it's economical to spend.
     293                 :             :     virtual CFeeRate relayDustFee() = 0;
     294                 :             : 
     295                 :             :     //! Check if any block has been pruned.
     296                 :             :     virtual bool havePruned() = 0;
     297                 :             : 
     298                 :             :     //! Check if the node is ready to broadcast transactions.
     299                 :             :     virtual bool isReadyToBroadcast() = 0;
     300                 :             : 
     301                 :             :     //! Check if in IBD.
     302                 :             :     virtual bool isInitialBlockDownload() = 0;
     303                 :             : 
     304                 :             :     //! Check if shutdown requested.
     305                 :             :     virtual bool shutdownRequested() = 0;
     306                 :             : 
     307                 :             :     //! Send init message.
     308                 :             :     virtual void initMessage(const std::string& message) = 0;
     309                 :             : 
     310                 :             :     //! Send init warning.
     311                 :             :     virtual void initWarning(const bilingual_str& message) = 0;
     312                 :             : 
     313                 :             :     //! Send init error.
     314                 :             :     virtual void initError(const bilingual_str& message) = 0;
     315                 :             : 
     316                 :             :     //! Send progress indicator.
     317                 :             :     virtual void showProgress(const std::string& title, int progress, bool resume_possible) = 0;
     318                 :             : 
     319                 :             :     //! Chain notifications.
     320         [ +  - ]:         117 :     class Notifications
     321                 :             :     {
     322                 :             :     public:
     323                 :           0 :         virtual ~Notifications() = default;
     324                 :           0 :         virtual void transactionAddedToMempool(const CTransactionRef& tx) {}
     325                 :           0 :         virtual void transactionRemovedFromMempool(const CTransactionRef& tx, MemPoolRemovalReason reason) {}
     326                 :           0 :         virtual void blockConnected(ChainstateRole role, const BlockInfo& block) {}
     327                 :           0 :         virtual void blockDisconnected(const BlockInfo& block) {}
     328                 :           0 :         virtual void updatedBlockTip() {}
     329                 :           0 :         virtual void chainStateFlushed(ChainstateRole role, const CBlockLocator& locator) {}
     330                 :             :     };
     331                 :             : 
     332                 :             :     //! Register handler for notifications.
     333                 :             :     virtual std::unique_ptr<Handler> handleNotifications(std::shared_ptr<Notifications> notifications) = 0;
     334                 :             : 
     335                 :             :     //! Wait for pending notifications to be processed unless block hash points to the current
     336                 :             :     //! chain tip.
     337                 :             :     virtual void waitForNotificationsIfTipChanged(const uint256& old_tip) = 0;
     338                 :             : 
     339                 :             :     //! Register handler for RPC. Command is not copied, so reference
     340                 :             :     //! needs to remain valid until Handler is disconnected.
     341                 :             :     virtual std::unique_ptr<Handler> handleRpc(const CRPCCommand& command) = 0;
     342                 :             : 
     343                 :             :     //! Check if deprecated RPC is enabled.
     344                 :             :     virtual bool rpcEnableDeprecated(const std::string& method) = 0;
     345                 :             : 
     346                 :             :     //! Run function after given number of seconds. Cancel any previous calls with same name.
     347                 :             :     virtual void rpcRunLater(const std::string& name, std::function<void()> fn, int64_t seconds) = 0;
     348                 :             : 
     349                 :             :     //! Get settings value.
     350                 :             :     virtual common::SettingsValue getSetting(const std::string& arg) = 0;
     351                 :             : 
     352                 :             :     //! Get list of settings values.
     353                 :             :     virtual std::vector<common::SettingsValue> getSettingsList(const std::string& arg) = 0;
     354                 :             : 
     355                 :             :     //! Return <datadir>/settings.json setting value.
     356                 :             :     virtual common::SettingsValue getRwSetting(const std::string& name) = 0;
     357                 :             : 
     358                 :             :     //! Updates a setting in <datadir>/settings.json.
     359                 :             :     //! Depending on the action returned by the update function, this will either
     360                 :             :     //! update the setting in memory or write the updated settings to disk.
     361                 :             :     virtual bool updateRwSetting(const std::string& name, const SettingsUpdate& update_function) = 0;
     362                 :             : 
     363                 :             :     //! Replace a setting in <datadir>/settings.json with a new value.
     364                 :             :     virtual bool overwriteRwSetting(const std::string& name, common::SettingsValue& value, bool write = true) = 0;
     365                 :             : 
     366                 :             :     //! Delete a given setting in <datadir>/settings.json.
     367                 :             :     virtual bool deleteRwSettings(const std::string& name, bool write = true) = 0;
     368                 :             : 
     369                 :             :     //! Synchronously send transactionAddedToMempool notifications about all
     370                 :             :     //! current mempool transactions to the specified handler and return after
     371                 :             :     //! the last one is sent. These notifications aren't coordinated with async
     372                 :             :     //! notifications sent by handleNotifications, so out of date async
     373                 :             :     //! notifications from handleNotifications can arrive during and after
     374                 :             :     //! synchronous notifications from requestMempoolTransactions. Clients need
     375                 :             :     //! to be prepared to handle this by ignoring notifications about unknown
     376                 :             :     //! removed transactions and already added new transactions.
     377                 :             :     virtual void requestMempoolTransactions(Notifications& notifications) = 0;
     378                 :             : 
     379                 :             :     //! Return true if an assumed-valid chain is in use.
     380                 :             :     virtual bool hasAssumedValidChain() = 0;
     381                 :             : 
     382                 :             :     //! Get internal node context. Useful for testing, but not
     383                 :             :     //! accessible across processes.
     384                 :           0 :     virtual node::NodeContext* context() { return nullptr; }
     385                 :             : };
     386                 :             : 
     387                 :             : //! Interface to let node manage chain clients (wallets, or maybe tools for
     388                 :             : //! monitoring and analysis in the future).
     389         [ +  - ]:          25 : class ChainClient
     390                 :             : {
     391                 :             : public:
     392                 :          25 :     virtual ~ChainClient() = default;
     393                 :             : 
     394                 :             :     //! Register rpcs.
     395                 :             :     virtual void registerRpcs() = 0;
     396                 :             : 
     397                 :             :     //! Check for errors before loading.
     398                 :             :     virtual bool verify() = 0;
     399                 :             : 
     400                 :             :     //! Load saved state.
     401                 :             :     virtual bool load() = 0;
     402                 :             : 
     403                 :             :     //! Start client execution and provide a scheduler.
     404                 :             :     virtual void start(CScheduler& scheduler) = 0;
     405                 :             : 
     406                 :             :     //! Save state to disk.
     407                 :             :     virtual void flush() = 0;
     408                 :             : 
     409                 :             :     //! Shut down client.
     410                 :             :     virtual void stop() = 0;
     411                 :             : 
     412                 :             :     //! Set mock time.
     413                 :             :     virtual void setMockTime(int64_t time) = 0;
     414                 :             : 
     415                 :             :     //! Mock the scheduler to fast forward in time.
     416                 :             :     virtual void schedulerMockForward(std::chrono::seconds delta_seconds) = 0;
     417                 :             : };
     418                 :             : 
     419                 :             : //! Return implementation of Chain interface.
     420                 :             : std::unique_ptr<Chain> MakeChain(node::NodeContext& node);
     421                 :             : 
     422                 :             : } // namespace interfaces
     423                 :             : 
     424                 :             : #endif // BITCOIN_INTERFACES_CHAIN_H
        

Generated by: LCOV version 2.0-1