You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
litecoin/src/node
Anthony Towns de55304f6e
[refactor] Add versionbits deployments to deploymentstatus.h
3 years ago
..
README.md
blockstorage.cpp refactor: Remove chainparams arg from CChainState member functions 3 years ago
blockstorage.h add missing atomic include 3 years ago
coin.cpp scripted-diff: tree-wide: Remove all review-only assertions 3 years ago
coin.h
coinstats.cpp scripted-diff: tree-wide: Remove all review-only assertions 3 years ago
coinstats.h index, rpc: Add use_index option for gettxoutsetinfo 4 years ago
context.cpp validation: Farewell, global Chainstate! 3 years ago
context.h validation: Farewell, global Chainstate! 3 years ago
interfaces.cpp [refactor] Add versionbits deployments to deploymentstatus.h 3 years ago
psbt.cpp Construct and use PrecomputedTransactionData in PSBT signing 3 years ago
psbt.h
transaction.cpp scripted-diff: tree-wide: Remove all review-only assertions 3 years ago
transaction.h
ui_interface.cpp
ui_interface.h
utxo_snapshot.h validation: remove nchaintx from assumeutxo metadata 4 years ago

README.md

src/node/

The src/node/ directory contains code that needs to access node state (state in CChain, CBlockIndex, CCoinsView, CTxMemPool, and similar classes).

Code in src/node/ is meant to be segregated from code in src/wallet/ and src/qt/, to ensure wallet and GUI code changes don't interfere with node operation, to allow wallet and GUI code to run in separate processes, and to perhaps eventually allow wallet and GUI code to be maintained in separate source repositories.

As a rule of thumb, code in one of the src/node/, src/wallet/, or src/qt/ directories should avoid calling code in the other directories directly, and only invoke it indirectly through the more limited src/interfaces/ classes.

This directory is at the moment sparsely populated. Eventually more substantial files like src/validation.cpp and src/txmempool.cpp might be moved there.