Implement SetType in DescriptorScriptPubKeyMan

This commit is contained in:
Andrew Chow
2019-07-16 13:50:32 -04:00
parent 834de0300c
commit 78f8a92910
2 changed files with 12 additions and 1 deletions

View File

@@ -1608,4 +1608,8 @@ uint256 DescriptorScriptPubKeyMan::GetID() const
return uint256();
}
void DescriptorScriptPubKeyMan::SetType(OutputType type, bool internal) {}
void DescriptorScriptPubKeyMan::SetType(OutputType type, bool internal)
{
this->m_address_type = type;
this->m_internal = internal;
}