We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8f6954 commit 5b4fdbbCopy full SHA for 5b4fdbb
src/outputtype.h
@@ -27,7 +27,6 @@ static constexpr auto OUTPUT_TYPES = std::array{
27
OutputType::P2SH_SEGWIT,
28
OutputType::BECH32,
29
OutputType::BECH32M,
30
- OutputType::UNKNOWN,
31
};
32
33
std::optional<OutputType> ParseOutputType(const std::string& str);
src/wallet/wallet.cpp
@@ -3433,7 +3433,6 @@ void CWallet::SetupDescriptorScriptPubKeyMans()
3433
3434
for (bool internal : {false, true}) {
3435
for (OutputType t : OUTPUT_TYPES) {
3436
- if (t == OutputType::UNKNOWN) continue;
3437
auto spk_manager = std::unique_ptr<DescriptorScriptPubKeyMan>(new DescriptorScriptPubKeyMan(*this));
3438
if (IsCrypted()) {
3439
if (IsLocked()) {
0 commit comments