diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-01-05 12:06:26 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-01-05 12:06:42 +0100 |
| commit | ce43630d1e97368f454ad6a7b65a24263ab5be71 (patch) | |
| tree | 7612898ce52d094da87a2e32ad0c05a1cb5d6778 /src/txmempool.h | |
| parent | Merge #9281: Refactor: Remove using namespace <xxx> from bench/ & test/ sources (diff) | |
| parent | Fix transaction size comments. Size now refers to virtual size as defined in ... (diff) | |
| download | discoin-ce43630d1e97368f454ad6a7b65a24263ab5be71.tar.xz discoin-ce43630d1e97368f454ad6a7b65a24263ab5be71.zip | |
Merge #8747: [rpc] Fix transaction size comments and RPC help text.
d29505d Fix transaction size comments. Size now refers to virtual size as defined in BIP141. (jonnynewbs)
Diffstat (limited to 'src/txmempool.h')
| -rw-r--r-- | src/txmempool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txmempool.h b/src/txmempool.h index 7c68053f2..3f8ab5950 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -422,7 +422,7 @@ private: unsigned int nTransactionsUpdated; CBlockPolicyEstimator* minerPolicyEstimator; - uint64_t totalTxSize; //!< sum of all mempool tx' byte sizes + uint64_t totalTxSize; //!< sum of all mempool tx's virtual sizes. Differs from serialized tx size since witness data is discounted. Defined in BIP 141. uint64_t cachedInnerUsage; //!< sum of dynamic memory usage of all the map elements (NOT the maps themselves) CFeeRate minReasonableRelayFee; |