aboutsummaryrefslogtreecommitdiff
path: root/src/miner.h
diff options
context:
space:
mode:
authorSuhas Daftuar <sdaftuar@gmail.com>2017-03-08 10:56:29 -0500
committerSuhas Daftuar <sdaftuar@gmail.com>2017-03-29 13:57:52 -0400
commit011124a2b278c5a60bad5f1b0b4abbf7ebc95aa0 (patch)
tree2aaa6e1cb9a0f35f021af3c00f5315724f5591ea /src/miner.h
parent42cd8c890fb2d65274f26edf95b6d52ac41fcab8 (diff)
downloadbitcoin-011124a2b278c5a60bad5f1b0b4abbf7ebc95aa0.tar.xz
Update benchmarking with package statistics
Diffstat (limited to 'src/miner.h')
-rw-r--r--src/miner.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/miner.h b/src/miner.h
index c105d07c23..cd225cabc1 100644
--- a/src/miner.h
+++ b/src/miner.h
@@ -180,8 +180,10 @@ private:
void AddToBlock(CTxMemPool::txiter iter);
// Methods for how to add transactions to a block.
- /** Add transactions based on feerate including unconfirmed ancestors */
- void addPackageTxs();
+ /** Add transactions based on feerate including unconfirmed ancestors
+ * Increments nPackagesSelected / nDescendantsUpdated with corresponding
+ * statistics from the package selection (for logging statistics). */
+ void addPackageTxs(int &nPackagesSelected, int &nDescendantsUpdated);
// helper functions for addPackageTxs()
/** Remove confirmed (inBlock) entries from given set */
@@ -199,8 +201,9 @@ private:
/** Sort the package in an order that is valid to appear in a block */
void SortForBlock(const CTxMemPool::setEntries& package, CTxMemPool::txiter entry, std::vector<CTxMemPool::txiter>& sortedEntries);
/** Add descendants of given transactions to mapModifiedTx with ancestor
- * state updated assuming given transactions are inBlock. */
- void UpdatePackagesForAdded(const CTxMemPool::setEntries& alreadyAdded, indexed_modified_transaction_set &mapModifiedTx);
+ * state updated assuming given transactions are inBlock. Returns number
+ * of updated descendants. */
+ int UpdatePackagesForAdded(const CTxMemPool::setEntries& alreadyAdded, indexed_modified_transaction_set &mapModifiedTx);
};
/** Modify the extranonce in a block */