aboutsummaryrefslogtreecommitdiff
path: root/src/txmempool.h
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2016-07-31 20:53:17 +0200
committerPieter Wuille <pieter.wuille@gmail.com>2016-10-30 23:12:09 -0700
commitc3efb586223c0459cdb47913375c2df805be925e (patch)
tree7da677b8eafc769cde40cae86ac71474c82d5adc /src/txmempool.h
parentd2143dc937e3fc93fd35def25a9c0461f26ccd4f (diff)
downloadbitcoin-c3efb586223c0459cdb47913375c2df805be925e.tar.xz
Add feedelta to TxMempoolInfo
Diffstat (limited to 'src/txmempool.h')
-rw-r--r--src/txmempool.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/txmempool.h b/src/txmempool.h
index bb2638c3b7..9b0ca4655e 100644
--- a/src/txmempool.h
+++ b/src/txmempool.h
@@ -329,6 +329,9 @@ struct TxMempoolInfo
/** Feerate of the transaction. */
CFeeRate feeRate;
+
+ /** The fee delta. */
+ int64_t nFeeDelta;
};
/**