diff options
author | luigi1111 <luigi1111w@gmail.com> | 2022-08-22 22:44:04 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2022-08-22 22:44:04 -0500 |
commit | 645d752b1947d92b261680ea1d664066d9ae8c44 (patch) | |
tree | 21b714ffae06ef73bb6dbc9d450fd7b9a9a2ba4d /src/cryptonote_core/tx_pool.h | |
parent | Merge pull request #8381 (diff) | |
parent | continue pool pruning even if a tx can't be found (diff) | |
download | monero-645d752b1947d92b261680ea1d664066d9ae8c44.tar.xz |
Merge pull request #8415
628fdcd continue pool pruning even if a tx can't be found (j-berman)
Diffstat (limited to 'src/cryptonote_core/tx_pool.h')
-rw-r--r-- | src/cryptonote_core/tx_pool.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/cryptonote_core/tx_pool.h b/src/cryptonote_core/tx_pool.h index df58688ff..d4a300a2f 100644 --- a/src/cryptonote_core/tx_pool.h +++ b/src/cryptonote_core/tx_pool.h @@ -410,6 +410,13 @@ namespace cryptonote */ void set_txpool_max_weight(size_t bytes); + /** + * @brief reduce the cumulative txpool weight by the weight provided + * + * @param weight the weight to reduce the total txpool weight by + */ + void reduce_txpool_weight(size_t weight); + #define CURRENT_MEMPOOL_ARCHIVE_VER 11 #define CURRENT_MEMPOOL_TX_DETAILS_ARCHIVE_VER 13 |