diff options
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 |