Skip to content

Commit 731065b

Browse files
committed
Consistent parameter names in txdb.h
1 parent 35aeabe commit 731065b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/txdb.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,12 +115,12 @@ class CBlockTreeDB : public CDBWrapper
115115
void operator=(const CBlockTreeDB&);
116116
public:
117117
bool WriteBatchSync(const std::vector<std::pair<int, const CBlockFileInfo*> >& fileInfo, int nLastFile, const std::vector<const CBlockIndex*>& blockinfo);
118-
bool ReadBlockFileInfo(int nFile, CBlockFileInfo &fileinfo);
118+
bool ReadBlockFileInfo(int nFile, CBlockFileInfo &info);
119119
bool ReadLastBlockFile(int &nFile);
120-
bool WriteReindexing(bool fReindex);
121-
bool ReadReindexing(bool &fReindex);
120+
bool WriteReindexing(bool fReindexing);
121+
bool ReadReindexing(bool &fReindexing);
122122
bool ReadTxIndex(const uint256 &txid, CDiskTxPos &pos);
123-
bool WriteTxIndex(const std::vector<std::pair<uint256, CDiskTxPos> > &list);
123+
bool WriteTxIndex(const std::vector<std::pair<uint256, CDiskTxPos> > &vect);
124124
bool WriteFlag(const std::string &name, bool fValue);
125125
bool ReadFlag(const std::string &name, bool &fValue);
126126
bool LoadBlockIndexGuts(const Consensus::Params& consensusParams, std::function<CBlockIndex*(const uint256&)> insertBlockIndex);

0 commit comments

Comments
 (0)