File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff 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);
Original file line number Diff line number Diff 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 */
169169extern const char *NOTFOUND;
Original file line number Diff line number Diff 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 );
Original file line number Diff line number Diff 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
2121std::string HelpRequiringPassphrase (CWallet *);
2222void EnsureWalletIsUnlocked (CWallet *);
You can’t perform that action at this time.
0 commit comments