aboutsummaryrefslogtreecommitdiff
path: root/src/miner.h
diff options
context:
space:
mode:
authorSuhas Daftuar <[email protected]>2017-12-07 09:57:53 -0500
committerSuhas Daftuar <[email protected]>2017-12-07 10:06:38 -0500
commit1ec0c0a01c316146434642ab2f14a7367306dbec (patch)
tree78f46d62f63666c09b7ffc6bc6717e699ee27636 /src/miner.h
parentMerge #11829: Test datadir specified in conf file exists (diff)
downloaddiscoin-1ec0c0a01c316146434642ab2f14a7367306dbec.tar.xz
discoin-1ec0c0a01c316146434642ab2f14a7367306dbec.zip
Make boost::multi_index comparators const
This fixes compatibility with boost 1.66
Diffstat (limited to 'src/miner.h')
-rw-r--r--src/miner.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/miner.h b/src/miner.h
index 36276dc36..d81ec6421 100644
--- a/src/miner.h
+++ b/src/miner.h
@@ -71,7 +71,7 @@ struct modifiedentry_iter {
// except operating on CTxMemPoolModifiedEntry.
// TODO: refactor to avoid duplication of this logic.
struct CompareModifiedEntry {
- bool operator()(const CTxMemPoolModifiedEntry &a, const CTxMemPoolModifiedEntry &b)
+ bool operator()(const CTxMemPoolModifiedEntry &a, const CTxMemPoolModifiedEntry &b) const
{
double f1 = (double)a.nModFeesWithAncestors * b.nSizeWithAncestors;
double f2 = (double)b.nModFeesWithAncestors * a.nSizeWithAncestors;
@@ -86,7 +86,7 @@ struct CompareModifiedEntry {
// This is sufficient to sort an ancestor package in an order that is valid
// to appear in a block.
struct CompareTxIterByAncestorCount {
- bool operator()(const CTxMemPool::txiter &a, const CTxMemPool::txiter &b)
+ bool operator()(const CTxMemPool::txiter &a, const CTxMemPool::txiter &b) const
{
if (a->GetCountWithAncestors() != b->GetCountWithAncestors())
return a->GetCountWithAncestors() < b->GetCountWithAncestors();