Skip to content

Commit fc94fac

Browse files
MarcoFalkePastaPastaPasta
authored andcommitted
Merge bitcoin#10842: Fix incorrect Doxygen tag (@Ince@SInCE). Doxygen parameter name matching.
2c2e90d Fix incorrect Doxygen tag (@Ince@SInCE). Make Doxygen parameter names match actual parameter names. (practicalswift) Pull request description: Doxygen fixes: * Fix incorrect Doxygen tag (`@ince` → `@since`). * Make Doxygen parameter names match actual parameter names. Tree-SHA512: cb1d37a7d15a90d24affaf5c2bcf462663f0b0c13868bb25401e5d8cb303fcb41e53fdeee8012b2271a509112ef98fc0c070b4194f42cd55361f7e6bc7996342
1 parent d9c541e commit fc94fac

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
@@ -64,7 +64,7 @@ class TxConfirmStats
6464
* Create new TxConfirmStats. This is called by BlockPolicyEstimator's
6565
* constructor with default values.
6666
* @param defaultBuckets contains the upper limits for the bucket boundaries
67-
* @param maxConfirms max number of confirms to track
67+
* @param maxPeriods max number of periods to track
6868
* @param decay how much to decay the historical moving average per block
6969
*/
7070
TxConfirmStats(const std::vector<double>& defaultBuckets, unsigned int maxConfirms, double decay);

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
@@ -269,7 +269,7 @@ class ArgsManager
269269
* Return string argument or default value
270270
*
271271
* @param strArg Argument to get (e.g. "-foo")
272-
* @param default (e.g. "1")
272+
* @param strDefault (e.g. "1")
273273
* @return command-line argument or default value
274274
*/
275275
std::string GetArg(const std::string& strArg, const std::string& strDefault);
@@ -278,7 +278,7 @@ class ArgsManager
278278
* Return integer argument or default value
279279
*
280280
* @param strArg Argument to get (e.g. "-foo")
281-
* @param default (e.g. 1)
281+
* @param nDefault (e.g. 1)
282282
* @return command-line argument (0 if invalid number) or default value
283283
*/
284284
int64_t GetArg(const std::string& strArg, int64_t nDefault);
@@ -287,7 +287,7 @@ class ArgsManager
287287
* Return boolean argument or default value
288288
*
289289
* @param strArg Argument to get (e.g. "-foo")
290-
* @param default (true or false)
290+
* @param fDefault (true or false)
291291
* @return command-line argument or default value
292292
*/
293293
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)