From 24bf2eaae0388bbf6c41e46d94d32570623422f4 Mon Sep 17 00:00:00 2001 From: Davide Grilli Date: Sun, 8 Feb 2026 11:37:25 +0100 Subject: [PATCH] Fix typo: correct "traproot" to "taproot" in address type display Fix typo in AddressTypeDisplayName function where BECH32M address type was incorrectly labeled as "traproot" instead of "taproot" --- src/qt/receivecoinsdialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/receivecoinsdialog.cpp b/src/qt/receivecoinsdialog.cpp index ce9f098..d71b531 100644 --- a/src/qt/receivecoinsdialog.cpp +++ b/src/qt/receivecoinsdialog.cpp @@ -39,7 +39,7 @@ QString AddressTypeDisplayName(OutputType type) case OutputType::LEGACY: return QStringLiteral("legacy"); case OutputType::P2SH_SEGWIT: return QStringLiteral("p2sh-segwit"); case OutputType::BECH32: return QStringLiteral("segwit"); - case OutputType::BECH32M: return QStringLiteral("traproot"); + case OutputType::BECH32M: return QStringLiteral("taproot"); default: return QStringLiteral("legacy"); } }