wallet: remove UNKNOWN type from OUTPUT_TYPES array

This array contains the known active output types only.
And it's solely used to create/walk-through the active spkms.
This commit is contained in:
furszy
2022-08-18 16:40:42 -03:00
parent a8f69541ad
commit 5b4fdbbff5
2 changed files with 0 additions and 2 deletions

View File

@@ -27,7 +27,6 @@ static constexpr auto OUTPUT_TYPES = std::array{
OutputType::P2SH_SEGWIT,
OutputType::BECH32,
OutputType::BECH32M,
OutputType::UNKNOWN,
};
std::optional<OutputType> ParseOutputType(const std::string& str);