aboutsummaryrefslogtreecommitdiff
path: root/src/txmempool.h
diff options
context:
space:
mode:
authordonaloconnor <donaloconnor@gmail.com>2017-09-07 19:13:01 +0100
committerdonaloconnor <donaloconnor@gmail.com>2017-09-07 19:13:01 +0100
commit203a4aa31eee402755f7156593228ab55407cc47 (patch)
treed78a20dc5c1bdca2516485bd5f5cbf8bad1b0fbf /src/txmempool.h
parenta3624ddb1a3b4a1ced39dfe75b1bcbb52de4fbb0 (diff)
downloadbitcoin-203a4aa31eee402755f7156593228ab55407cc47.tar.xz
Fix CTxMemPoolEntry::UpdateAncestorState: modifySigOps param type int -> int64_t
Diffstat (limited to 'src/txmempool.h')
-rw-r--r--src/txmempool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txmempool.h b/src/txmempool.h
index b07886579c..83850d8a36 100644
--- a/src/txmempool.h
+++ b/src/txmempool.h
@@ -109,7 +109,7 @@ public:
// Adjusts the descendant state.
void UpdateDescendantState(int64_t modifySize, CAmount modifyFee, int64_t modifyCount);
// Adjusts the ancestor state
- void UpdateAncestorState(int64_t modifySize, CAmount modifyFee, int64_t modifyCount, int modifySigOps);
+ void UpdateAncestorState(int64_t modifySize, CAmount modifyFee, int64_t modifyCount, int64_t modifySigOps);
// Updates the fee delta used for mining priority score, and the
// modified fees with descendants.
void UpdateFeeDelta(int64_t feeDelta);