diff options
| author | James O'Beirne <[email protected]> | 2018-04-17 17:15:20 -0400 |
|---|---|---|
| committer | James O'Beirne <[email protected]> | 2018-04-17 17:15:20 -0400 |
| commit | 18326ae2a7bff8b8e1b5493ad7cd6fc11b575ab2 (patch) | |
| tree | d2aa907998a92fa36d91db9f6cebc48db03cbfc3 /src/chainparams.h | |
| parent | Merge #12993: tests: Remove compatibility code not needed now when we're on P... (diff) | |
| download | discoin-18326ae2a7bff8b8e1b5493ad7cd6fc11b575ab2.tar.xz discoin-18326ae2a7bff8b8e1b5493ad7cd6fc11b575ab2.zip | |
[doc] Add comments for chainparams.h, validation.cpp
Diffstat (limited to 'src/chainparams.h')
| -rw-r--r-- | src/chainparams.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/chainparams.h b/src/chainparams.h index 6b1f813af..dd029b9d5 100644 --- a/src/chainparams.h +++ b/src/chainparams.h @@ -25,6 +25,12 @@ struct CCheckpointData { MapCheckpoints mapCheckpoints; }; +/** + * Holds various statistics on transactions within a chain. Used to estimate + * verification progress during chain sync. + * + * See also: CChainParams::TxData, GuessVerificationProgress. + */ struct ChainTxData { int64_t nTime; int64_t nTxCount; |