wallet: fix capitalization in docstring

This commit is contained in:
stickies-v 2022-09-27 19:24:01 +01:00
parent 291e363ce5
commit c6e8e11fb0
No known key found for this signature in database
GPG Key ID: 5CB1CE6E5E66A757

View File

@ -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);