diff options
author | Suhas Daftuar <sdaftuar@chaincode.com> | 2015-11-24 08:53:14 -0500 |
---|---|---|
committer | Suhas Daftuar <sdaftuar@chaincode.com> | 2015-11-24 08:53:14 -0500 |
commit | e30443244a7a50f2db70e593ec8a57e5086db3d9 (patch) | |
tree | cf2d82fbe7ddf299852aaf04c7ca55f374855a7b /src/policy/fees.h | |
parent | 56106a3300f844afcadf6dce50d5ef1d337f50b9 (diff) |
Pass reference to estimateSmartFee and cleanup whitespace
Diffstat (limited to 'src/policy/fees.h')
-rw-r--r-- | src/policy/fees.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/policy/fees.h b/src/policy/fees.h index 59e6bfbc06..7a293267d4 100644 --- a/src/policy/fees.h +++ b/src/policy/fees.h @@ -247,7 +247,7 @@ public: * confTarget blocks. If no answer can be given at confTarget, return an * estimate at the lowest target where one can be given. */ - CFeeRate estimateSmartFee(int confTarget, int *answerFoundAtTarget, const CTxMemPool *pool); + CFeeRate estimateSmartFee(int confTarget, int *answerFoundAtTarget, const CTxMemPool& pool); /** Return a priority estimate */ double estimatePriority(int confTarget); @@ -256,7 +256,7 @@ public: * confTarget blocks. If no answer can be given at confTarget, return an * estimate at the lowest target where one can be given. */ - double estimateSmartPriority(int confTarget, int *answerFoundAtTarget, const CTxMemPool *pool); + double estimateSmartPriority(int confTarget, int *answerFoundAtTarget, const CTxMemPool& pool); /** Write estimation data to a file */ void Write(CAutoFile& fileout); |