From 731065b114452ff770320d09639448b3c9a74b0a Mon Sep 17 00:00:00 2001 From: MeshCollider Date: Thu, 24 Aug 2017 13:58:28 +1200 Subject: [PATCH] Consistent parameter names in txdb.h --- src/txdb.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/txdb.h b/src/txdb.h index d1cd5a425042d..ab3a9f7e3fecc 100644 --- a/src/txdb.h +++ b/src/txdb.h @@ -115,12 +115,12 @@ class CBlockTreeDB : public CDBWrapper void operator=(const CBlockTreeDB&); public: bool WriteBatchSync(const std::vector >& fileInfo, int nLastFile, const std::vector& blockinfo); - bool ReadBlockFileInfo(int nFile, CBlockFileInfo &fileinfo); + bool ReadBlockFileInfo(int nFile, CBlockFileInfo &info); bool ReadLastBlockFile(int &nFile); - bool WriteReindexing(bool fReindex); - bool ReadReindexing(bool &fReindex); + bool WriteReindexing(bool fReindexing); + bool ReadReindexing(bool &fReindexing); bool ReadTxIndex(const uint256 &txid, CDiskTxPos &pos); - bool WriteTxIndex(const std::vector > &list); + bool WriteTxIndex(const std::vector > &vect); bool WriteFlag(const std::string &name, bool fValue); bool ReadFlag(const std::string &name, bool &fValue); bool LoadBlockIndexGuts(const Consensus::Params& consensusParams, std::function insertBlockIndex);