diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-09-26 15:44:44 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-09-26 15:42:21 -0400 |
commit | fa69ac761441af3e1195fbb4018b18233a4433d2 (patch) | |
tree | ce4f9f1b51db76f3b46249efae526701f6ee9b7f /src/txmempool.h | |
parent | cc7258bdfb44c5b5f3498296d8c9e6791655e89f (diff) |
doxygen: Fix member comments
Diffstat (limited to 'src/txmempool.h')
-rw-r--r-- | src/txmempool.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/txmempool.h b/src/txmempool.h index 913501fd66..cda78ea90c 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -343,13 +343,13 @@ struct TxMempoolInfo * this is passed to the notification signal. */ enum class MemPoolRemovalReason { - UNKNOWN = 0, //! Manually removed or unknown reason - EXPIRY, //! Expired from mempool - SIZELIMIT, //! Removed in size limiting - REORG, //! Removed for reorganization - BLOCK, //! Removed for block - CONFLICT, //! Removed for conflict with in-block transaction - REPLACED //! Removed for replacement + UNKNOWN = 0, //!< Manually removed or unknown reason + EXPIRY, //!< Expired from mempool + SIZELIMIT, //!< Removed in size limiting + REORG, //!< Removed for reorganization + BLOCK, //!< Removed for block + CONFLICT, //!< Removed for conflict with in-block transaction + REPLACED, //!< Removed for replacement }; class SaltedTxidHasher |