aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorstickies-v <stickies-v@protonmail.com>2022-09-27 19:24:01 +0100
committerstickies-v <stickies-v@protonmail.com>2022-09-29 17:32:52 +0100
commitc6e8e11fb030ef406752761530421a9e2f0f5d4f (patch)
treeb992a7de6683927816f03d55898ff53bb5b7ad87 /src
parent291e363ce500e492475c4ccd189ea1d031c43613 (diff)
wallet: fix capitalization in docstring
Diffstat (limited to 'src')
-rw-r--r--src/wallet/wallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp
index 5889de2e36..5c9a0133d0 100644
--- a/src/wallet/wallet.cpp
+++ b/src/wallet/wallet.cpp
@@ -1957,7 +1957,7 @@ void CWallet::ResubmitWalletTransactions(bool relay, bool force)
// Only rebroadcast unconfirmed txs
if (!wtx.isUnconfirmed()) continue;
- // attempt to rebroadcast all txes more than 5 minutes older than
+ // Attempt to rebroadcast all txes more than 5 minutes older than
// the last block, or all txs if forcing.
if (!force && wtx.nTimeReceived > m_best_block_time - 5 * 60) continue;
to_submit.insert(&wtx);