diff options
author | Alex Morcos <morcos@chaincode.com> | 2017-02-15 15:48:48 -0500 |
---|---|---|
committer | Alex Morcos <morcos@chaincode.com> | 2017-04-10 13:56:50 -0400 |
commit | 5ba81e54e0390ec0be7dbc8ebea0c35933442a8a (patch) | |
tree | 614058d4426ef86d836b017db769327402706ea0 /src/policy/fees.h | |
parent | 14e10aa842b8583f9648accd5d151dbdf342b9dc (diff) |
Read and Write fee estimate file directly from CBlockPolicyEstimator
Diffstat (limited to 'src/policy/fees.h')
-rw-r--r-- | src/policy/fees.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/policy/fees.h b/src/policy/fees.h index 2299144b94..d11de81ee3 100644 --- a/src/policy/fees.h +++ b/src/policy/fees.h @@ -156,7 +156,7 @@ public: unsigned int GetMaxConfirms() const { return confAvg.size(); } /** Write state of estimation data to a file*/ - void Write(CAutoFile& fileout); + void Write(CAutoFile& fileout) const; /** * Read saved state of estimation data from a file and replace all internal data structures and @@ -226,10 +226,10 @@ public: CFeeRate estimateSmartFee(int confTarget, int *answerFoundAtTarget, const CTxMemPool& pool) const; /** Write estimation data to a file */ - void Write(CAutoFile& fileout); + bool Write(CAutoFile& fileout) const; /** Read estimation data from a file */ - void Read(CAutoFile& filein, int nFileVersion); + bool Read(CAutoFile& filein); private: CFeeRate minTrackedFee; //!< Passed to constructor to avoid dependency on main |