diff --git a/src/wallet/feebumper.cpp b/src/wallet/feebumper.cpp index 82ea8ee1c94..0b56a232515 100644 --- a/src/wallet/feebumper.cpp +++ b/src/wallet/feebumper.cpp @@ -84,7 +84,7 @@ static feebumper::Result CheckFeeRate(const CWallet& wallet, const CMutableTrans std::optional combined_bump_fee = wallet.chain().calculateCombinedBumpFee(reused_inputs, newFeerate); if (!combined_bump_fee.has_value()) { - errors.push_back(Untranslated(strprintf("Failed to calculate bump fees, because unconfirmed UTXOs depend on enormous cluster of unconfirmed transactions."))); + errors.push_back(Untranslated(strprintf("Failed to calculate bump fees, because unconfirmed UTXOs depend on an enormous cluster of unconfirmed transactions."))); } CAmount new_total_fee = newFeerate.GetFee(maxTxSize) + combined_bump_fee.value(); diff --git a/src/wallet/spend.cpp b/src/wallet/spend.cpp index 250377afcfa..53a224b46b7 100644 --- a/src/wallet/spend.cpp +++ b/src/wallet/spend.cpp @@ -762,7 +762,7 @@ util::Result ChooseSelectionResult(interfaces::Chain& chain, co } std::optional combined_bump_fee = chain.calculateCombinedBumpFee(outpoints, coin_selection_params.m_effective_feerate); if (!combined_bump_fee.has_value()) { - return util::Error{_("Failed to calculate bump fees, because unconfirmed UTXOs depend on enormous cluster of unconfirmed transactions.")}; + return util::Error{_("Failed to calculate bump fees, because unconfirmed UTXOs depend on an enormous cluster of unconfirmed transactions.")}; } CAmount bump_fee_overestimate = summed_bump_fees - combined_bump_fee.value(); if (bump_fee_overestimate) { diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 91a494c379f..f86a28c52e4 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -2847,7 +2847,7 @@ std::shared_ptr CWallet::Create(WalletContext& context, const std::stri rescan_required = true; } else if (nLoadWalletRet == DBErrors::UNKNOWN_DESCRIPTOR) { error = strprintf(_("Unrecognized descriptor found. Loading wallet %s\n\n" - "The wallet might had been created on a newer version.\n" + "The wallet might have been created on a newer version.\n" "Please try running the latest software version.\n"), walletFile); return nullptr; } else if (nLoadWalletRet == DBErrors::UNEXPECTED_LEGACY_ENTRY) { @@ -3149,7 +3149,7 @@ bool CWallet::AttachChain(const std::shared_ptr& walletInstance, interf // but fail the rescan with a generic error. error = chain.havePruned() ? - _("Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of pruned node)") : + _("Prune: last wallet synchronisation goes beyond pruned data. You need to -reindex (download the whole blockchain again in case of a pruned node)") : strprintf(_( "Error loading wallet. Wallet requires blocks to be downloaded, " "and software does not currently support loading wallets while " diff --git a/src/wallet/walletdb.cpp b/src/wallet/walletdb.cpp index 2c0073f3568..bc5bb0fa0bb 100644 --- a/src/wallet/walletdb.cpp +++ b/src/wallet/walletdb.cpp @@ -791,7 +791,7 @@ static DBErrors LoadDescriptorWalletRecords(CWallet* pwallet, DatabaseBatch& bat value >> desc; } catch (const std::ios_base::failure& e) { strErr = strprintf("Error: Unrecognized descriptor found in wallet %s. ", pwallet->GetName()); - strErr += (last_client > CLIENT_VERSION) ? "The wallet might had been created on a newer version. " : + strErr += (last_client > CLIENT_VERSION) ? "The wallet might have been created on a newer version. " : "The database might be corrupted or the software version is not compatible with one of your wallet descriptors. "; strErr += "Please try running the latest software version"; // Also include error details