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"
This commit is contained in:
2026-02-08 11:37:25 +01:00
parent df54973334
commit 24bf2eaae0

View File

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