Skip to content

Commit 2c2e90d

Browse files
Fix incorrect Doxygen tag (@Ince@SInCE). Make Doxygen parameter names match actual parameter names.
1 parent 5cfdda2 commit 2c2e90d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/policy/fees.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ class TxConfirmStats
117117
* Create new TxConfirmStats. This is called by BlockPolicyEstimator's
118118
* constructor with default values.
119119
* @param defaultBuckets contains the upper limits for the bucket boundaries
120-
* @param maxConfirms max number of confirms to track
120+
* @param maxPeriods max number of periods to track
121121
* @param decay how much to decay the historical moving average per block
122122
*/
123123
TxConfirmStats(const std::vector<double>& defaultBuckets, const std::map<double, unsigned int>& defaultBucketMap,

src/protocol.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ extern const char *PONG;
163163
/**
164164
* The notfound message is a reply to a getdata message which requested an
165165
* object the receiving node does not have available for relay.
166-
* @ince protocol version 70001.
166+
* @since protocol version 70001.
167167
* @see https://bitcoin.org/en/developer-reference#notfound
168168
*/
169169
extern const char *NOTFOUND;

src/util.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ class ArgsManager
215215
* Return string argument or default value
216216
*
217217
* @param strArg Argument to get (e.g. "-foo")
218-
* @param default (e.g. "1")
218+
* @param strDefault (e.g. "1")
219219
* @return command-line argument or default value
220220
*/
221221
std::string GetArg(const std::string& strArg, const std::string& strDefault);
@@ -224,7 +224,7 @@ class ArgsManager
224224
* Return integer argument or default value
225225
*
226226
* @param strArg Argument to get (e.g. "-foo")
227-
* @param default (e.g. 1)
227+
* @param nDefault (e.g. 1)
228228
* @return command-line argument (0 if invalid number) or default value
229229
*/
230230
int64_t GetArg(const std::string& strArg, int64_t nDefault);
@@ -233,7 +233,7 @@ class ArgsManager
233233
* Return boolean argument or default value
234234
*
235235
* @param strArg Argument to get (e.g. "-foo")
236-
* @param default (true or false)
236+
* @param fDefault (true or false)
237237
* @return command-line argument or default value
238238
*/
239239
bool GetBoolArg(const std::string& strArg, bool fDefault);

src/wallet/rpcwallet.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ void RegisterWalletRPCCommands(CRPCTable &t);
1616
* @param[in] request JSONRPCRequest that wishes to access a wallet
1717
* @return NULL if no wallet should be used, or a pointer to the CWallet
1818
*/
19-
CWallet *GetWalletForJSONRPCRequest(const JSONRPCRequest&);
19+
CWallet *GetWalletForJSONRPCRequest(const JSONRPCRequest& request);
2020

2121
std::string HelpRequiringPassphrase(CWallet *);
2222
void EnsureWalletIsUnlocked(CWallet *);

0 commit comments

Comments
 (0)